diff --git a/.gitignore b/.gitignore index 9f99aba..4180b3e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ *.jpg *.jpeg *.DS_Store + +!examples/* diff --git a/README.md b/README.md index e63d688..9265016 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,26 @@ -##Mapbot(s?), bot(s?) to map an indoor area +# mapbots -###Workflow +An army of midget bots for mapping an indoor area. -* each maintainer has their own branch -* maintainers send pull requests to master to merge -* a non-zero number of maintainers distinct from pull-request originator reviewcommits before merging +We've referred to [these][1] [two][2] sources extensively for implementing the algorithm. Thanks! -###bylaws -* a maintainer may only push to branches they created -* a maintainer may branch off another maintainer's branch to add features/fixes, and then send a PR to the branch they branched off from +* [`examples/`](https://github.com/static-code-generators/mapbots/tree/master/examples): Outputs of running our bot and algorithm on different sample spaces +* [`bot_stuff/`](https://github.com/static-code-generators/mapbots/tree/master/bot_stuff): Bot-side code and schematics +* [`server_stuff/`](https://github.com/static-code-generators/mapbots/tree/master/server_stuff): Server-side code for the map generation algorithm(s) + +Go to the above sub-directories for more details! + +## Results + +### Pentagonal Area + +enclosure +result + +### Rectangular Area + +enclosure +result + +[1]: http://acoustics.mit.edu/GOATS/2002publications/8.pdf "Robust Mapping and Localization in Indoor Environments Using Sonar Data" +[2]: http://www.iri.upc.edu/people/jsola/JoanSola/objectes/curs_SLAM/SLAM2D/SLAM%20course.pdf "Simulataneous Localization and Mapping with the Extended Kalman Filter" diff --git a/arduino/serial/serial.ino b/arduino/serial/serial.ino deleted file mode 100644 index bee5318..0000000 --- a/arduino/serial/serial.ino +++ /dev/null @@ -1,21 +0,0 @@ -#include -SoftwareSerial espSerial(10,11); -void setup() { - // put your setup code here, to run once: - Serial.begin(115200); - espSerial.begin(115200); - - -} - -void loop() { - // put your main code here, to run repeatedly: - while (espSerial.available() > 0) { - Serial.write(espSerial.read()); - } - while (Serial.available() > 0) { - espSerial.write(Serial.read()); - } - - -} diff --git a/arduino/ultrasonic/ultrasonic.ino b/arduino/ultrasonic/ultrasonic.ino deleted file mode 100644 index 573cabd..0000000 --- a/arduino/ultrasonic/ultrasonic.ino +++ /dev/null @@ -1,239 +0,0 @@ -#include - -#define SSID "ECE CLUB ROOM" -#define PASS "ece@iiitd" -#define IP "10.0.0.4" // Server IP -#define PORT "5555" // Server port - -const int echoPin = 7; // Echo Pin -const int trigPin = 8; // Trigger Pin -const int LEDPin = 13;// connected LED -const int maximumRange = 4; // Maximum range of sensor in metres -const int minimumRange = 0; // Minimum range needed -float pingTime = 0; -float targetDistance = 0; // Duration used to calculate distance -const int speedofSound = 336; //constant in m/s - -int id = 0; - -int writeString (String buffer, int len); -int connectWiFi(); -int connectServer(); -void errorLED(int errorCode); - -enum errorType -{ - noModule, - noWiFi, - noServer, - badData -}; - -SoftwareSerial espSerial(10, 11); // RX, TX - -void setup() { - Serial.begin(115200); - espSerial.begin(115200); - - while (!moduleWorking()) { - errorLED(noModule); - } - - pinMode(trigPin, OUTPUT); //sonic pulse from trigPin - pinMode(echoPin, INPUT); //detection at Echo Pin - pinMode(LEDPin, OUTPUT); // Use LED indicator (if required) - - while (!connectWiFi()) { - errorLED(noWiFi); - } - int temp; - while ((temp = connectWiFi()) == 0) { - errorLED(noWiFi); - Serial.println("connectWiFi: " + String(temp)); - temp = connectServer(); - } - while ((temp = connectServer()) == 0) { - errorLED(noServer); - Serial.println("connectServer: " + String(temp)); - temp = connectServer(); - } -} - -void loop() { - delay(2000); - /*while (espSerial.available() > 0) { - Serial.write(espSerial.read()); - }*/ - espSerial.flush(); - - digitalWrite(trigPin, LOW); - delayMicroseconds(2000); - digitalWrite(trigPin, HIGH); - delayMicroseconds(20); - digitalWrite(trigPin, LOW); - pingTime = pulseIn(echoPin, HIGH); - /* Calculate the distance (in metres) based on the speed of sound. */ - pingTime = pingTime / 1000000.; //calculate time in seconds - targetDistance = (speedofSound * pingTime); //twice distance in metres - targetDistance = targetDistance / 2; - if (targetDistance >= maximumRange || targetDistance <= minimumRange) - { - /* Send a negative number to computer and Turn LED ON - to indicate "out of range" */ - writeString("1 -1", 4); - errorLED(badData); - } - else { - /* Send the distance to the computer using Serial protocol, and - turn LED OFF to indicate successful reading. */ - String stringOne = "1 "; - String targetDistanceString = stringOne + String(targetDistance); - targetDistanceString += "\r\n"; - Serial.println(targetDistanceString); - if (!writeString(targetDistanceString, targetDistanceString.length())) - errorLED(noModule); - // digitalWrite(LEDPin, LOW); - } - //Delay 1s before next reading. - delay(1000); -} - - -int connectWiFi() { - espSerial.print("AT+CWMODE=1\r\n"); - Serial.println("AT+CWMODE=1"); - delay(2000); - String cmd = "AT+CWJAP=\""; - cmd += SSID; - cmd += "\",\""; - cmd += PASS; - cmd += "\""; - espSerial.print(cmd); - espSerial.print("\r\n"); - Serial.print(cmd); - espSerial.print("\r\n"); - delay(5000); - if (int res = findOK()) { - Serial.println("FIND OUT ->" + String(res)); - // monitor.println("RECEIVED: OK"); - return 1; - } else { - return 0; - } -} - -int moduleWorking() { - Serial.println("AT"); - espSerial.print("AT"); - espSerial.print("\r\n"); - return findOK(); -} - -int connectServer() { - Serial.println("AT+CIPMUX=1"); - espSerial.print("AT+CIPMUX=1\r\n"); - String cmd = "AT+CIPSTART=0,\"TCP\""; - cmd += ",\""; - cmd += IP; - cmd += "\","; - cmd += PORT; - cmd += "\r\n"; - Serial.println(cmd); - espSerial.print(cmd); - delay(2000); - - if (int res = findOK()) { - //Serial.println("FIND OUT ->" + String(res)); - return 1; - } - else { - return 0; - } -} - -int writeString (String buffer, int len) { - Serial.print("AT+CIPSEND="); - Serial.print(id); - Serial.print(","); - Serial.print(len); - Serial.print("\r\n"); - Serial.print(buffer); - Serial.print("\r\n"); - - String cmd = "AT+CIPSEND="; - cmd += String(id); - cmd += ","; - cmd += String(len); - cmd += "\r\n"; - - espSerial.print(cmd); - delay(5); - - espSerial.print(buffer); - - return 1; -} - -void errorLED(errorType error) { - if (error == noModule) { - int state = HIGH; - int toggle = HIGH ^ LOW; - for (int i = 0; i < 7; state ^= toggle, ++i) - { - digitalWrite(LEDPin, state); - delay(143); - } - } else if (error == noWiFi) { - digitalWrite(LEDPin, HIGH); - delay(1000); - } else if (error == noServer) { - int state = HIGH; - int toggle = HIGH ^ LOW; - for (int i = 0; i < 3; state ^= toggle, ++i) - { - digitalWrite(LEDPin, state); - delay(333); - } - } else if (error == badData) { - int state = HIGH; - int toggle = HIGH ^ LOW; - for (int i = 0; i < 5; state ^= toggle, ++i) - { - digitalWrite(LEDPin, state); - delay(200); - } - } - digitalWrite(LEDPin, LOW); -} - -int findOK() { - char inData[100]; - char inChar; - int index = 0; - delay(5); - while (espSerial.available() > 0) // Don't read unless - // there you know there is data - { - //Serial.println(espSerial.available()); - if (index < 99) // One less than the size of the array - { - inChar = espSerial.read(); // Read a character - inData[index] = inChar; // Store it - index++; // Increment where to write next - } else { - break; - } - } - - inData[index] = '\0'; // Null terminate the string - Serial.println(inData); - int foundOK = 0; - for (index = 0; inData[index + 1]; index++) { - if (inData[index] == 'O' && inData[index + 1] == 'K') { - foundOK = 1; - break; - } - } - return foundOK; -} - diff --git a/bot_stuff/README.md b/bot_stuff/README.md new file mode 100644 index 0000000..9b8ef2f --- /dev/null +++ b/bot_stuff/README.md @@ -0,0 +1,19 @@ +# mapbots/bot_stuff + +## Code + +Most of the sketches here are present for historial and testing purposes. +The following folders are the important ones: + +* `bot_final`: The final Arduino sketch; does obstacle-avoidance, moves around and +collects readings by rotating servo, sends readings via Bluetooth in format required +by server-side code. +* `Libraries/`: Contains the following: + * `Direction.h`: Functions for movement + * `Constants.h`: Constant pin definitions + * `Sensor.h`: Functions for taking readings from an array of ultrasonic sensors + +## Hardware + +schematic +bot diff --git a/esp8266_stuff/ESP8266_AT b/esp8266_stuff/ESP8266_AT deleted file mode 160000 index 4d00060..0000000 --- a/esp8266_stuff/ESP8266_AT +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4d00060634d4c74267ad38d27aa58805680a872c diff --git a/esp8266_stuff/esp-at-commands.md b/esp8266_stuff/esp-at-commands.md deleted file mode 100644 index 82f351a..0000000 --- a/esp8266_stuff/esp-at-commands.md +++ /dev/null @@ -1,15 +0,0 @@ -## List of commands to run -``` -AT+CWJAP="SSID","PASSWORD" -AT+CWMODE=1 -AT+CIPMUX=1 -AT+CIPSTART=0,"TCP","", -AT+CIPSEND=0,10 followed by data -AT+CIPCLOSE=0 -``` -### Connect to AP -``` -AT+CWLAP # List of APs -AT+CWJAP="","" -AT+CIFSR # Show assigned IP -``` diff --git a/esp8266_stuff/esptool.py b/esp8266_stuff/esptool.py deleted file mode 100644 index b6a8876..0000000 --- a/esp8266_stuff/esptool.py +++ /dev/null @@ -1,844 +0,0 @@ -#!/usr/bin/env python -# -# ESP8266 ROM Bootloader Utility -# https://github.com/themadinventor/esptool -# -# Copyright (C) 2014 Fredrik Ahlberg -# -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin -# Street, Fifth Floor, Boston, MA 02110-1301 USA. - -import sys -import struct -import serial -import time -import argparse -import os -import subprocess -import tempfile -import inspect - - -class ESPROM: - # These are the currently known commands supported by the ROM - ESP_FLASH_BEGIN = 0x02 - ESP_FLASH_DATA = 0x03 - ESP_FLASH_END = 0x04 - ESP_MEM_BEGIN = 0x05 - ESP_MEM_END = 0x06 - ESP_MEM_DATA = 0x07 - ESP_SYNC = 0x08 - ESP_WRITE_REG = 0x09 - ESP_READ_REG = 0x0a - - # Maximum block sized for RAM and Flash writes, respectively. - # ESP_RAM_BLOCK = 0x1800 - ESP_RAM_BLOCK = 0x18 - # ESP_FLASH_BLOCK = 0x400 - ESP_FLASH_BLOCK = 0x4 - - # Default baudrate. The ROM auto-bauds, so we can use more or less whatever we want. - ESP_ROM_BAUD = 115200 - - # First byte of the application image - ESP_IMAGE_MAGIC = 0xe9 - - # Initial state for the checksum routine - ESP_CHECKSUM_MAGIC = 0xef - - # OTP ROM addresses - ESP_OTP_MAC0 = 0x3ff00050 - ESP_OTP_MAC1 = 0x3ff00054 - - # Sflash stub: an assembly routine to read from spi flash and send to host - SFLASH_STUB = "\x80\x3c\x00\x40\x1c\x4b\x00\x40\x21\x11\x00\x40\x00\x80" \ - "\xfe\x3f\xc1\xfb\xff\xd1\xf8\xff\x2d\x0d\x31\xfd\xff\x41\xf7\xff\x4a" \ - "\xdd\x51\xf9\xff\xc0\x05\x00\x21\xf9\xff\x31\xf3\xff\x41\xf5\xff\xc0" \ - "\x04\x00\x0b\xcc\x56\xec\xfd\x06\xff\xff\x00\x00" - - def __init__(self, port=0, baud=ESP_ROM_BAUD): - self._port = serial.Serial(port) - # setting baud rate in a separate step is a workaround for - # CH341 driver on some Linux versions (this opens at 9600 then - # sets), shouldn't matter for other platforms/drivers. See - # https://github.com/themadinventor/esptool/issues/44#issuecomment-107094446 - self._port.baudrate = baud - self.in_bootloader = False # actually unknown, but assume not - - """ Read bytes from the serial port while performing SLIP unescaping """ - def read(self, length=1): - b = '' - while len(b) < length: - c = self._port.read(1) - if c == '\xdb': - c = self._port.read(1) - if c == '\xdc': - b = b + '\xc0' - elif c == '\xdd': - b = b + '\xdb' - else: - raise FatalError('Invalid SLIP escape') - else: - b = b + c - return b - - """ Write bytes to the serial port while performing SLIP escaping """ - def write(self, packet): - buf = '\xc0' \ - + (packet.replace('\xdb','\xdb\xdd').replace('\xc0','\xdb\xdc')) \ - + '\xc0' - self._port.write(buf) - - """ Calculate checksum of a blob, as it is defined by the ROM """ - @staticmethod - def checksum(data, state=ESP_CHECKSUM_MAGIC): - for b in data: - state ^= ord(b) - return state - - """ Send a request and read the response """ - def command(self, op=None, data=None, chk=0): - if op: - pkt = struct.pack(' 0: - (op_ret, val, body) = self.receive_response() - if op is None or op_ret == op: - return val, body # valid response received - retries = retries - 1 - - raise FatalError("Response doesn't match request") - - """ Receive a response to a command """ - def receive_response(self): - # Read header of response and parse - if self._port.read(1) != '\xc0': - raise FatalError('Invalid head of packet') - hdr = self.read(8) - (resp, op_ret, len_ret, val) = struct.unpack('> 16) & 0xff) == 0: - oui = (0x18, 0xfe, 0x34) - elif ((mac1 >> 16) & 0xff) == 1: - oui = (0xac, 0xd0, 0x74) - else: - raise FatalError("Unknown OUI") - return oui + ((mac1 >> 8) & 0xff, mac1 & 0xff, (mac0 >> 24) & 0xff) - - """ Read SPI flash manufacturer and device id """ - def flash_id(self): - self.flash_begin(0, 0) - self.write_reg(0x60000240, 0x0, 0xffffffff) - self.write_reg(0x60000200, 0x10000000, 0xffffffff) - flash_id = self.read_reg(0x60000240) - self.flash_finish(False) - return flash_id - - """ Read SPI flash """ - def flash_read(self, offset, size, count=1): - # Create a custom stub - stub = struct.pack(' 16: - raise FatalError('Invalid firmware image') - - for i in xrange(segments): - (offset, size) = struct.unpack(' 0x40200000 or offset < 0x3ffe0000 or size > 65536: - raise FatalError('Suspicious segment 0x%x, length %d' % (offset, size)) - segment_data = f.read(size) - if len(segment_data) < size: - raise FatalError('End of file reading segment 0x%x, length %d (actual length %d)' % (offset, size, len(segment_data))) - self.segments.append((offset, size, segment_data)) - - # Skip the padding. The checksum is stored in the last byte so that the - # file is a multiple of 16 bytes. - align = 15 - (f.tell() % 16) - f.seek(align, 1) - - self.checksum = ord(f.read(1)) - - def add_segment(self, addr, data): - # Data should be aligned on word boundary - l = len(data) - if l % 4: - data += b"\x00" * (4 - l % 4) - if l > 0: - self.segments.append((addr, len(data), data)) - - def save(self, filename): - f = file(filename, 'wb') - f.write(struct.pack(', ) or a single -# argument. - -def load_ram(esp, args): - image = ESPFirmwareImage(args.filename) - - print 'RAM boot...' - for (offset, size, data) in image.segments: - print 'Downloading %d bytes at %08x...' % (size, offset), - sys.stdout.flush() - esp.mem_begin(size, div_roundup(size, esp.ESP_RAM_BLOCK), esp.ESP_RAM_BLOCK, offset) - - seq = 0 - while len(data) > 0: - esp.mem_block(data[0:esp.ESP_RAM_BLOCK], seq) - data = data[esp.ESP_RAM_BLOCK:] - seq += 1 - print 'done!' - - print 'All segments done, executing at %08x' % image.entrypoint - esp.mem_finish(image.entrypoint) - - -def read_mem(esp, args): - print '0x%08x = 0x%08x' % (args.address, esp.read_reg(args.address)) - - -def write_mem(esp, args): - esp.write_reg(args.address, args.value, args.mask, 0) - print 'Wrote %08x, mask %08x to %08x' % (args.value, args.mask, args.address) - - -def dump_mem(esp, args): - f = file(args.filename, 'wb') - for i in xrange(args.size / 4): - d = esp.read_reg(args.address + (i * 4)) - f.write(struct.pack(' 0: - print '\rWriting at 0x%08x... (%d %%)' % (address + seq * esp.ESP_FLASH_BLOCK, 100 * (seq + 1) / blocks), - sys.stdout.flush() - block = image[0:esp.ESP_FLASH_BLOCK] - # Fix sflash config data - if address == 0 and seq == 0 and block[0] == '\xe9': - block = block[0:2] + flash_info + block[4:] - # Pad the last block - block = block + '\xff' * (esp.ESP_FLASH_BLOCK - len(block)) - esp.flash_block(block, seq) - image = image[esp.ESP_FLASH_BLOCK:] - seq += 1 - written += len(block) - t = time.time() - t - print '\rWrote %d bytes at 0x%08x in %.1f seconds (%.1f kbit/s)...' % (written, address, t, written / t * 8 / 1000) - print '\nLeaving...' - if args.flash_mode == 'dio': - esp.flash_unlock_dio() - else: - esp.flash_begin(0, 0) - esp.flash_finish(False) - if args.verify: - print 'Verifying just-written flash...' - verify_flash(esp, args) - - -def image_info(args): - image = ESPFirmwareImage(args.filename) - print ('Entry point: %08x' % image.entrypoint) if image.entrypoint != 0 else 'Entry point not set' - print '%d segments' % len(image.segments) - print - checksum = ESPROM.ESP_CHECKSUM_MAGIC - for (idx, (offset, size, data)) in enumerate(image.segments): - print 'Segment %d: %5d bytes at %08x' % (idx + 1, size, offset) - checksum = ESPROM.checksum(data, checksum) - print - print 'Checksum: %02x (%s)' % (image.checksum, 'valid' if image.checksum == checksum else 'invalid!') - - -def make_image(args): - image = ESPFirmwareImage() - if len(args.segfile) == 0: - raise FatalError('No segments specified') - if len(args.segfile) != len(args.segaddr): - raise FatalError('Number of specified files does not match number of specified addresses') - for (seg, addr) in zip(args.segfile, args.segaddr): - data = file(seg, 'rb').read() - image.add_segment(addr, data) - image.entrypoint = args.entrypoint - image.save(args.output) - - -def elf2image(args): - if args.output is None: - args.output = args.input + '-' - e = ELFFile(args.input) - image = ESPFirmwareImage() - image.entrypoint = e.get_entry_point() - for section, start in ((".text", "_text_start"), (".data", "_data_start"), (".rodata", "_rodata_start")): - data = e.load_section(section) - image.add_segment(e.get_symbol_addr(start), data) - - image.flash_mode = {'qio':0, 'qout':1, 'dio':2, 'dout': 3}[args.flash_mode] - image.flash_size_freq = {'4m':0x00, '2m':0x10, '8m':0x20, '16m':0x30, '32m':0x40, '16m-c1': 0x50, '32m-c1':0x60, '32m-c2':0x70}[args.flash_size] - image.flash_size_freq += {'40m':0, '26m':1, '20m':2, '80m': 0xf}[args.flash_freq] - - image.save(args.output + "0x00000.bin") - data = e.load_section(".irom0.text") - off = e.get_symbol_addr("_irom0_text_start") - 0x40200000 - if off < 0: - raise FatalError('Address of symbol _irom0_text_start in ELF is located before flash mapping address. Bad linker script?') - f = open(args.output + "0x%05x.bin" % off, "wb") - f.write(data) - f.close() - - -def read_mac(esp, args): - mac = esp.read_mac() - print 'MAC: %s' % ':'.join(map(lambda x: '%02x' % x, mac)) - - -def erase_flash(esp, args): - print 'Erasing flash (this may take a while)...' - esp.flash_erase() - - -def run(esp, args): - esp.run() - - -def flash_id(esp, args): - flash_id = esp.flash_id() - print 'Manufacturer: %02x' % (flash_id & 0xff) - print 'Device: %02x%02x' % ((flash_id >> 8) & 0xff, (flash_id >> 16) & 0xff) - - -def read_flash(esp, args): - print 'Please wait...' - file(args.filename, 'wb').write(esp.flash_read(args.address, 1024, div_roundup(args.size, 1024))[:args.size]) - - -def verify_flash(esp, args): - differences = False - for address, argfile in args.addr_filename: - if not esp.in_bootloader: - esp.connect() - image = argfile.read() - argfile.seek(0) # rewind in case we need it again - image_size = len(image) - print 'Verifying 0x%x (%d) bytes @ 0x%08x in flash against %s...' % (image_size, image_size, address, argfile.name) - flash = esp.flash_read(address, 1024, div_roundup(image_size, 1024))[:image_size] - if flash == image: - print '-- verify OK' - else: - differences = True - diff = [i for i in xrange(image_size) if flash[i] != image[i]] - print '-- verify FAILED: %d differences, first @ 0x%08x' % (len(diff), address + diff[0]) - try: - if args.diff == 'yes': - for d in diff: - print ' %08x %02x %02x' % (address + d, ord(flash[d]), ord(image[d])) - except AttributeError: - pass # if performing write_flash --verify, there is no .diff attribute - if differences: - raise FatalError("Verify failed.") - -# -# End of operations functions -# - - -def main(): - parser = argparse.ArgumentParser(description='ESP8266 ROM Bootloader Utility', prog='esptool') - - parser.add_argument( - '--port', '-p', - help='Serial port device', - default='/dev/ttyUSB0') - - parser.add_argument( - '--baud', '-b', - help='Serial port baud rate', - type=arg_auto_int, - default=ESPROM.ESP_ROM_BAUD) - - subparsers = parser.add_subparsers( - dest='operation', - help='Run esptool {command} -h for additional help') - - parser_load_ram = subparsers.add_parser( - 'load_ram', - help='Download an image to RAM and execute') - parser_load_ram.add_argument('filename', help='Firmware image') - - parser_dump_mem = subparsers.add_parser( - 'dump_mem', - help='Dump arbitrary memory to disk') - parser_dump_mem.add_argument('address', help='Base address', type=arg_auto_int) - parser_dump_mem.add_argument('size', help='Size of region to dump', type=arg_auto_int) - parser_dump_mem.add_argument('filename', help='Name of binary dump') - - parser_read_mem = subparsers.add_parser( - 'read_mem', - help='Read arbitrary memory location') - parser_read_mem.add_argument('address', help='Address to read', type=arg_auto_int) - - parser_write_mem = subparsers.add_parser( - 'write_mem', - help='Read-modify-write to arbitrary memory location') - parser_write_mem.add_argument('address', help='Address to write', type=arg_auto_int) - parser_write_mem.add_argument('value', help='Value', type=arg_auto_int) - parser_write_mem.add_argument('mask', help='Mask of bits to write', type=arg_auto_int) - - parser_write_flash = subparsers.add_parser( - 'write_flash', - help='Write a binary blob to flash') - parser_write_flash.add_argument('addr_filename', metavar='
', help='Address followed by binary filename, separated by space', - action=AddrFilenamePairAction) - parser_write_flash.add_argument('--flash_freq', '-ff', help='SPI Flash frequency', - choices=['40m', '26m', '20m', '80m'], default='40m') - parser_write_flash.add_argument('--flash_mode', '-fm', help='SPI Flash mode', - choices=['qio', 'qout', 'dio', 'dout'], default='qio') - parser_write_flash.add_argument('--flash_size', '-fs', help='SPI Flash size in Mbit', type=str.lower, - choices=['4m', '2m', '8m', '16m', '32m', '16m-c1', '32m-c1', '32m-c2'], default='4m') - parser_write_flash.add_argument('--verify', help='Verify just-written data (only necessary if very cautious, data is already CRCed', action='store_true') - - subparsers.add_parser( - 'run', - help='Run application code in flash') - - parser_image_info = subparsers.add_parser( - 'image_info', - help='Dump headers from an application image') - parser_image_info.add_argument('filename', help='Image file to parse') - - parser_make_image = subparsers.add_parser( - 'make_image', - help='Create an application image from binary files') - parser_make_image.add_argument('output', help='Output image file') - parser_make_image.add_argument('--segfile', '-f', action='append', help='Segment input file') - parser_make_image.add_argument('--segaddr', '-a', action='append', help='Segment base address', type=arg_auto_int) - parser_make_image.add_argument('--entrypoint', '-e', help='Address of entry point', type=arg_auto_int, default=0) - - parser_elf2image = subparsers.add_parser( - 'elf2image', - help='Create an application image from ELF file') - parser_elf2image.add_argument('input', help='Input ELF file') - parser_elf2image.add_argument('--output', '-o', help='Output filename prefix', type=str) - parser_elf2image.add_argument('--flash_freq', '-ff', help='SPI Flash frequency', - choices=['40m', '26m', '20m', '80m'], default='40m') - parser_elf2image.add_argument('--flash_mode', '-fm', help='SPI Flash mode', - choices=['qio', 'qout', 'dio', 'dout'], default='qio') - parser_elf2image.add_argument('--flash_size', '-fs', help='SPI Flash size in Mbit', - choices=['4m', '2m', '8m', '16m', '32m', '16m-c1', '32m-c1', '32m-c2'], default='4m') - - subparsers.add_parser( - 'read_mac', - help='Read MAC address from OTP ROM') - - subparsers.add_parser( - 'flash_id', - help='Read SPI flash manufacturer and device ID') - - parser_read_flash = subparsers.add_parser( - 'read_flash', - help='Read SPI flash content') - parser_read_flash.add_argument('address', help='Start address', type=arg_auto_int) - parser_read_flash.add_argument('size', help='Size of region to dump', type=arg_auto_int) - parser_read_flash.add_argument('filename', help='Name of binary dump') - - parser_verify_flash = subparsers.add_parser( - 'verify_flash', - help='Verify a binary blob against flash') - parser_verify_flash.add_argument('addr_filename', help='Address and binary file to verify there, separated by space', - action=AddrFilenamePairAction) - parser_verify_flash.add_argument('--diff', '-d', help='Show differences', - choices=['no', 'yes'], default='no') - - subparsers.add_parser( - 'erase_flash', - help='Perform Chip Erase on SPI flash') - - # internal sanity check - every operation matches a module function of the same name - for operation in subparsers.choices.keys(): - assert operation in globals(), "%s should be a module function" % operation - - args = parser.parse_args() - - # operation function can take 1 arg (args), 2 args (esp, arg) - # or be a member function of the ESPROM class. - - operation_func = globals()[args.operation] - operation_args,_,_,_ = inspect.getargspec(operation_func) - if len(operation_args) == 2: # operation function takes an ESPROM connection object - esp = ESPROM(args.port, args.baud) - esp.connect() - operation_func(esp, args) - else: - operation_func(args) - - -class AddrFilenamePairAction(argparse.Action): - """ Custom parser class for the address/filename pairs passed as arguments """ - def __init__(self, option_strings, dest, nargs='+', **kwargs): - super(AddrFilenamePairAction, self).__init__(option_strings, dest, nargs, **kwargs) - - def __call__(self, parser, namespace, values, option_string=None): - # validate pair arguments - pairs = [] - for i in range(0,len(values),2): - try: - address = int(values[i],0) - except ValueError as e: - raise argparse.ArgumentError(self,'Address "%s" must be a number' % values[i]) - try: - argfile = open(values[i + 1], 'rb') - except IOError as e: - raise argparse.ArgumentError(self, e) - except IndexError: - raise argparse.ArgumentError(self,'Must be pairs of an address and the binary filename to write there') - pairs.append((address, argfile)) - setattr(namespace, self.dest, pairs) - -if __name__ == '__main__': - try: - main() - except FatalError as e: - print '\nA fatal error occurred: %s' % e - sys.exit(2) diff --git a/examples/data_pentagon.csv b/examples/data_pentagon.csv new file mode 100644 index 0000000..7cecff1 --- /dev/null +++ b/examples/data_pentagon.csv @@ -0,0 +1,7416 @@ +0.00,0.00,100.00,0.00,9 +0.00,0.00,100.00,4.92,9 +0.00,0.00,100.00,3.56,9 +2227.32,0.00,100.00,2.20,8 +2196.56,0.00,100.00,0.84,8 +2193.99,0.00,100.00,5.77,8 +2197.59,0.00,100.00,4.41,7 +2404.30,0.00,100.00,3.05,7 +0.00,0.00,100.00,1.69,7 +0.00,0.00,100.00,0.33,6 +0.00,0.00,100.00,5.25,6 +0.00,0.00,100.00,3.89,6 +619.76,0.00,100.00,2.53,5 +0.00,0.00,100.00,1.17,5 +0.00,0.00,100.00,6.10,5 +0.00,0.00,100.00,4.74,4 +0.00,0.00,100.00,3.38,4 +0.00,0.00,100.00,2.02,4 +0.00,0.00,100.00,0.66,3 +1856.19,0.00,100.00,5.58,3 +0.00,0.00,100.00,4.22,3 +0.00,0.00,100.00,2.86,2 +0.00,0.00,100.00,1.50,2 +0.00,0.00,100.00,0.14,2 +0.00,0.00,200.00,0.00,9 +0.00,0.00,200.00,4.92,9 +0.00,0.00,200.00,3.56,9 +2198.63,0.00,200.00,2.20,8 +2170.96,0.00,200.00,0.84,8 +2172.85,0.00,200.00,5.77,8 +2186.60,0.00,200.00,4.41,7 +2460.82,0.00,200.00,3.05,7 +0.00,0.00,200.00,1.69,7 +0.00,0.00,200.00,0.33,6 +3597.25,0.00,200.00,5.25,6 +1191.92,0.00,200.00,3.89,6 +1190.21,0.00,200.00,2.53,5 +0.00,0.00,200.00,1.17,5 +0.00,0.00,200.00,6.10,5 +0.00,0.00,200.00,4.74,4 +0.00,0.00,200.00,3.38,4 +0.00,0.00,200.00,2.02,4 +0.00,0.00,200.00,0.66,3 +0.00,0.00,200.00,5.58,3 +1775.43,0.00,200.00,4.22,3 +0.00,0.00,200.00,2.86,2 +0.00,0.00,200.00,1.50,2 +0.00,0.00,200.00,0.14,2 +0.00,0.00,300.00,0.00,9 +891.75,0.00,300.00,4.92,9 +0.00,0.00,300.00,3.56,9 +77.66,0.00,300.00,2.20,8 +0.00,0.00,300.00,0.84,8 +2159.11,0.00,300.00,5.77,8 +0.00,0.00,300.00,4.41,7 +2512.54,0.00,300.00,3.05,7 +2538.32,0.00,300.00,1.69,7 +2572.85,0.00,300.00,0.33,6 +3786.25,0.00,300.00,5.25,6 +3786.08,0.00,300.00,3.89,6 +0.00,0.00,300.00,2.53,5 +0.00,0.00,300.00,1.17,5 +0.00,0.00,300.00,6.10,5 +0.00,0.00,300.00,4.74,4 +0.00,0.00,300.00,3.38,4 +0.00,0.00,300.00,2.02,4 +1712.03,0.00,300.00,0.66,3 +0.00,0.00,300.00,5.58,3 +0.00,0.00,300.00,4.22,3 +0.00,0.00,300.00,2.86,2 +0.00,0.00,300.00,1.50,2 +878.18,0.00,300.00,0.14,2 +672.34,0.00,400.00,0.00,9 +1430.76,0.00,400.00,4.92,9 +1411.86,0.00,400.00,3.56,9 +2214.09,0.00,400.00,2.20,8 +2128.52,0.00,400.00,0.84,8 +2603.61,0.00,400.00,5.77,8 +2134.36,0.00,400.00,4.41,7 +2623.37,0.00,400.00,3.05,7 +2588.49,0.00,400.00,1.69,7 +2614.09,0.00,400.00,0.33,6 +4012.54,0.00,400.00,5.25,6 +3961.00,0.00,400.00,3.89,6 +0.00,0.00,400.00,2.53,5 +0.00,0.00,400.00,1.17,5 +0.00,0.00,400.00,6.10,5 +0.00,0.00,400.00,4.74,4 +0.00,0.00,400.00,3.38,4 +0.00,0.00,400.00,2.02,4 +0.00,0.00,400.00,0.66,3 +0.00,0.00,400.00,5.58,3 +1582.99,0.00,400.00,4.22,3 +0.00,0.00,400.00,2.86,2 +0.00,0.00,400.00,1.50,2 +701.20,0.00,400.00,0.14,2 +2556.19,0.00,400.00,1.57,9 +2553.09,0.00,400.00,0.21,9 +0.00,0.00,400.00,5.13,9 +3978.01,0.00,400.00,3.77,8 +3956.87,0.00,400.00,2.41,8 +0.00,0.00,400.00,1.06,8 +0.00,0.00,400.00,5.98,7 +0.00,0.00,400.00,4.62,7 +0.00,0.00,400.00,3.26,7 +0.00,0.00,400.00,1.90,6 +0.00,0.00,400.00,0.54,6 +0.00,0.00,400.00,5.46,6 +0.00,0.00,400.00,4.10,5 +0.00,0.00,400.00,2.74,5 +0.00,0.00,400.00,1.38,5 +0.00,0.00,400.00,0.02,4 +704.47,0.00,400.00,4.95,4 +708.08,0.00,400.00,3.59,4 +721.99,0.00,400.00,2.23,3 +1427.66,0.00,400.00,0.87,3 +2098.28,0.00,400.00,5.79,3 +0.00,0.00,400.00,4.43,2 +2105.67,0.00,400.00,3.07,2 +2108.25,0.00,400.00,1.71,2 +0.00,0.00,400.00,3.14,9 +0.00,0.00,400.00,1.78,9 +0.00,0.00,400.00,0.42,9 +0.00,0.00,400.00,5.35,8 +0.00,0.00,400.00,3.99,8 +0.00,0.00,400.00,2.63,8 +0.00,0.00,400.00,1.27,7 +0.00,0.00,400.00,6.19,7 +0.00,0.00,400.00,4.83,7 +0.00,0.00,400.00,3.47,6 +1109.62,0.00,400.00,2.11,6 +1459.62,0.00,400.00,0.75,6 +0.00,0.00,400.00,5.67,5 +0.00,0.00,400.00,4.31,5 +0.00,0.00,400.00,2.95,5 +2252.92,0.00,400.00,1.59,4 +2595.36,0.00,400.00,0.23,4 +2558.08,0.00,400.00,5.16,4 +2564.09,0.00,400.00,3.80,3 +0.00,0.00,400.00,2.44,3 +3918.21,0.00,400.00,1.08,3 +0.00,0.00,400.00,6.00,2 +0.00,0.00,400.00,4.64,2 +0.00,0.00,400.00,3.28,2 +1605.15,0.00,300.00,3.14,9 +0.00,0.00,300.00,1.78,9 +0.00,0.00,300.00,0.42,9 +1218.04,0.00,300.00,5.35,8 +0.00,0.00,300.00,3.99,8 +0.00,0.00,300.00,2.63,8 +0.00,0.00,300.00,1.27,7 +0.00,0.00,300.00,6.19,7 +892.27,0.00,300.00,4.83,7 +843.99,0.00,300.00,3.47,6 +871.99,0.00,300.00,2.11,6 +0.00,0.00,300.00,0.75,6 +0.00,0.00,300.00,5.67,5 +0.00,0.00,300.00,4.31,5 +0.00,0.00,300.00,2.95,5 +2239.52,0.00,300.00,1.59,4 +2616.84,0.00,300.00,0.23,4 +2606.01,0.00,300.00,5.16,4 +2606.19,0.00,300.00,3.80,3 +0.00,0.00,300.00,2.44,3 +0.00,0.00,300.00,1.08,3 +0.00,0.00,300.00,6.00,2 +0.00,0.00,300.00,4.64,2 +0.00,0.00,300.00,3.28,2 +0.00,0.00,300.00,4.71,9 +787.97,0.00,300.00,3.35,9 +786.43,0.00,300.00,1.99,9 +793.64,0.00,300.00,0.63,8 +1591.92,0.00,300.00,5.56,8 +2387.80,0.00,300.00,4.20,8 +2409.28,0.00,300.00,2.84,7 +2270.62,0.00,300.00,1.48,7 +2272.16,0.00,300.00,0.12,7 +2637.63,0.00,300.00,5.04,6 +2635.40,0.00,300.00,3.68,6 +2655.50,0.00,300.00,2.32,6 +0.00,0.00,300.00,0.96,5 +0.00,0.00,300.00,5.88,5 +0.00,0.00,300.00,4.52,5 +0.00,0.00,300.00,3.16,4 +0.00,0.00,300.00,1.80,4 +0.00,0.00,300.00,0.44,4 +0.00,0.00,300.00,5.37,3 +0.00,0.00,300.00,4.01,3 +0.00,0.00,300.00,2.65,3 +0.00,0.00,300.00,1.29,2 +0.00,0.00,300.00,6.22,2 +0.00,0.00,300.00,4.86,2 +0.00,0.00,300.00,0.00,9 +0.00,0.00,300.00,4.92,9 +2603.44,0.00,300.00,3.56,9 +2588.49,0.00,300.00,2.20,8 +2629.21,0.00,300.00,0.84,8 +0.00,0.00,300.00,5.77,8 +0.00,0.00,300.00,4.41,7 +0.00,0.00,300.00,3.05,7 +0.00,0.00,300.00,1.69,7 +1669.07,0.00,300.00,0.33,6 +0.00,0.00,300.00,5.25,6 +0.00,0.00,300.00,3.89,6 +0.00,0.00,300.00,2.53,5 +0.00,0.00,300.00,1.17,5 +0.00,0.00,300.00,6.10,5 +0.00,0.00,300.00,4.74,4 +0.00,0.00,300.00,3.38,4 +0.00,0.00,300.00,2.02,4 +790.55,0.00,300.00,0.66,3 +791.41,0.00,300.00,5.58,3 +803.26,0.00,300.00,4.22,3 +0.00,0.00,300.00,2.86,2 +0.00,0.00,300.00,1.50,2 +0.00,0.00,300.00,0.14,2 +2046.56,0.00,400.00,0.00,9 +0.00,0.00,400.00,4.92,9 +2461.34,0.00,400.00,3.56,9 +2481.44,0.00,400.00,2.20,8 +0.00,0.00,400.00,0.84,8 +3902.06,0.00,400.00,5.77,8 +3937.46,0.00,400.00,4.41,7 +3955.84,0.00,400.00,3.05,7 +0.00,0.00,400.00,1.69,7 +0.00,0.00,400.00,0.33,6 +0.00,0.00,400.00,5.25,6 +0.00,0.00,400.00,3.89,6 +0.00,0.00,400.00,2.53,5 +0.00,0.00,400.00,1.17,5 +0.00,0.00,400.00,6.10,5 +0.00,0.00,400.00,4.74,4 +0.00,0.00,400.00,3.38,4 +0.00,0.00,400.00,2.02,4 +762.54,0.00,400.00,0.66,3 +757.90,0.00,400.00,5.58,3 +1446.74,0.00,400.00,4.22,3 +0.00,0.00,400.00,2.86,2 +0.00,0.00,400.00,1.50,2 +0.00,0.00,400.00,0.14,2 +3938.49,0.00,400.00,1.57,9 +0.00,0.00,400.00,0.21,9 +0.00,0.00,400.00,5.13,9 +0.00,0.00,400.00,3.77,8 +0.00,0.00,400.00,2.41,8 +0.00,0.00,400.00,1.06,8 +0.00,0.00,400.00,5.98,7 +0.00,0.00,400.00,4.62,7 +0.00,0.00,400.00,3.26,7 +0.00,0.00,400.00,1.90,6 +0.00,0.00,400.00,0.54,6 +790.55,0.00,400.00,5.46,6 +789.86,0.00,400.00,4.10,5 +0.00,0.00,400.00,2.74,5 +0.00,0.00,400.00,1.38,5 +0.00,0.00,400.00,0.02,4 +2197.25,0.00,400.00,4.95,4 +2210.14,0.00,400.00,3.59,4 +2044.85,0.00,400.00,2.23,3 +2460.48,0.00,400.00,0.87,3 +2458.59,0.00,400.00,5.79,3 +2471.31,0.00,400.00,4.43,2 +0.00,0.00,400.00,3.07,2 +0.00,0.00,400.00,1.71,2 +0.00,0.00,400.00,3.14,9 +0.00,0.00,400.00,1.78,9 +0.00,0.00,400.00,0.42,9 +0.00,0.00,400.00,5.35,8 +761.34,0.00,400.00,3.99,8 +0.00,0.00,400.00,2.63,8 +0.00,0.00,400.00,1.27,7 +0.00,0.00,400.00,6.19,7 +2225.09,0.00,400.00,4.83,7 +2223.54,0.00,400.00,3.47,6 +0.00,0.00,400.00,2.11,6 +2502.23,0.00,400.00,0.75,6 +2525.43,0.00,400.00,5.67,5 +0.00,0.00,400.00,4.31,5 +0.00,0.00,400.00,2.95,5 +0.00,0.00,400.00,1.59,4 +3967.87,0.00,400.00,0.23,4 +3962.37,0.00,400.00,5.16,4 +0.00,0.00,400.00,3.80,3 +2152.23,0.00,400.00,2.44,3 +0.00,0.00,400.00,1.08,3 +0.00,0.00,400.00,6.00,2 +0.00,0.00,400.00,4.64,2 +0.00,0.00,400.00,3.28,2 +0.00,0.00,300.00,3.14,9 +0.00,0.00,300.00,1.78,9 +0.00,0.00,300.00,0.42,9 +698.97,0.00,300.00,5.35,8 +687.11,0.00,300.00,3.99,8 +700.52,0.00,300.00,2.63,8 +719.07,0.00,300.00,1.27,7 +0.00,0.00,300.00,6.19,7 +2370.45,0.00,300.00,4.83,7 +2329.72,0.00,300.00,3.47,6 +2265.46,0.00,300.00,2.11,6 +2661.86,0.00,300.00,0.75,6 +0.00,0.00,300.00,5.67,5 +0.00,0.00,300.00,4.31,5 +0.00,0.00,300.00,2.95,5 +0.00,0.00,300.00,1.59,4 +0.00,0.00,300.00,0.23,4 +0.00,0.00,300.00,5.16,4 +2297.94,0.00,300.00,3.80,3 +0.00,0.00,300.00,2.44,3 +0.00,0.00,300.00,1.08,3 +0.00,0.00,300.00,6.00,2 +0.00,0.00,300.00,4.64,2 +0.00,0.00,300.00,3.28,2 +1377.66,0.00,200.00,3.14,9 +0.00,0.00,200.00,1.78,9 +634.54,0.00,200.00,0.42,9 +619.59,0.00,200.00,5.35,8 +619.07,0.00,200.00,3.99,8 +0.00,0.00,200.00,2.63,8 +0.00,0.00,200.00,1.27,7 +0.00,0.00,200.00,6.19,7 +2456.36,0.00,200.00,4.83,7 +2387.63,0.00,200.00,3.47,6 +2364.26,0.00,200.00,2.11,6 +2400.69,0.00,200.00,0.75,6 +0.00,0.00,200.00,5.67,5 +0.00,0.00,200.00,4.31,5 +0.00,0.00,200.00,2.95,5 +0.00,0.00,200.00,1.59,4 +0.00,0.00,200.00,0.23,4 +0.00,0.00,200.00,5.16,4 +1693.81,0.00,200.00,3.80,3 +2067.70,0.00,200.00,2.44,3 +0.00,0.00,200.00,1.08,3 +0.00,0.00,200.00,6.00,2 +0.00,0.00,200.00,4.64,2 +0.00,0.00,200.00,3.28,2 +0.00,0.00,200.00,4.71,9 +2434.36,0.00,200.00,3.35,9 +2391.24,0.00,200.00,1.99,9 +2356.19,0.00,200.00,0.63,8 +2824.91,0.00,200.00,5.56,8 +2814.60,0.00,200.00,4.20,8 +2833.16,0.00,200.00,2.84,7 +0.00,0.00,200.00,1.48,7 +0.00,0.00,200.00,0.12,7 +4062.20,0.00,200.00,5.04,6 +2293.64,0.00,200.00,3.68,6 +0.00,0.00,200.00,2.32,6 +0.00,0.00,200.00,0.96,5 +0.00,0.00,200.00,5.88,5 +0.00,0.00,200.00,4.52,5 +0.00,0.00,200.00,3.16,4 +0.00,0.00,200.00,1.80,4 +0.00,0.00,200.00,0.44,4 +0.00,0.00,200.00,5.37,3 +630.41,0.00,200.00,4.01,3 +601.72,0.00,200.00,2.65,3 +604.30,0.00,200.00,1.29,2 +601.89,0.00,200.00,6.22,2 +625.77,0.00,200.00,4.86,2 +0.00,0.00,200.00,0.00,9 +0.00,0.00,200.00,4.92,9 +0.00,0.00,200.00,3.56,9 +0.00,0.00,200.00,2.20,8 +0.00,0.00,200.00,0.84,8 +0.00,0.00,200.00,5.77,8 +0.00,0.00,200.00,4.41,7 +0.00,0.00,200.00,3.05,7 +0.00,0.00,200.00,1.69,7 +0.00,0.00,200.00,0.33,6 +0.00,0.00,200.00,5.25,6 +0.00,0.00,200.00,3.89,6 +0.00,0.00,200.00,2.53,5 +644.67,0.00,200.00,1.17,5 +650.17,0.00,200.00,6.10,5 +634.02,0.00,200.00,4.74,4 +663.57,0.00,200.00,3.38,4 +1577.66,0.00,200.00,2.02,4 +2415.64,0.00,200.00,0.66,3 +2341.07,0.00,200.00,5.58,3 +2834.19,0.00,200.00,4.22,3 +0.00,0.00,200.00,2.86,2 +0.00,0.00,200.00,1.50,2 +0.00,0.00,200.00,0.14,2 +0.00,0.00,300.00,0.00,9 +0.00,0.00,300.00,4.92,9 +0.00,0.00,300.00,3.56,9 +0.00,0.00,300.00,2.20,8 +0.00,0.00,300.00,0.84,8 +0.00,0.00,300.00,5.77,8 +0.00,0.00,300.00,4.41,7 +0.00,0.00,300.00,3.05,7 +0.00,0.00,300.00,1.69,7 +0.00,0.00,300.00,0.33,6 +0.00,0.00,300.00,5.25,6 +0.00,0.00,300.00,3.89,6 +0.00,0.00,300.00,2.53,5 +0.00,0.00,300.00,1.17,5 +0.00,0.00,300.00,6.10,5 +809.28,0.00,300.00,4.74,4 +0.00,0.00,300.00,3.38,4 +1627.84,0.00,300.00,2.02,4 +2392.61,0.00,300.00,0.66,3 +2264.78,0.00,300.00,5.58,3 +2276.63,0.00,300.00,4.22,3 +0.00,0.00,300.00,2.86,2 +2658.42,0.00,300.00,1.50,2 +0.00,0.00,300.00,0.14,2 +0.00,0.00,400.00,0.00,9 +3754.64,0.00,400.00,4.92,9 +0.00,0.00,400.00,3.56,9 +0.00,0.00,400.00,2.20,8 +1567.70,0.00,400.00,0.84,8 +0.00,0.00,400.00,5.77,8 +0.00,0.00,400.00,4.41,7 +0.00,0.00,400.00,3.05,7 +0.00,0.00,400.00,1.69,7 +0.00,0.00,400.00,0.33,6 +1739.52,0.00,400.00,5.25,6 +0.00,0.00,400.00,3.89,6 +985.57,0.00,400.00,2.53,5 +960.31,0.00,400.00,1.17,5 +973.54,0.00,400.00,6.10,5 +955.50,0.00,400.00,4.74,4 +0.00,0.00,400.00,3.38,4 +2402.06,0.00,400.00,2.02,4 +2379.38,0.00,400.00,0.66,3 +2212.89,0.00,400.00,5.58,3 +2185.91,0.00,400.00,4.22,3 +2233.68,0.00,400.00,2.86,2 +2522.85,0.00,400.00,1.50,2 +0.00,0.00,400.00,0.14,2 +0.00,0.00,500.00,0.00,9 +3532.82,0.00,500.00,4.92,9 +3524.74,0.00,500.00,3.56,9 +0.00,0.00,500.00,2.20,8 +1447.08,0.00,500.00,0.84,8 +0.00,0.00,500.00,5.77,8 +0.00,0.00,500.00,4.41,7 +0.00,0.00,500.00,3.05,7 +0.00,0.00,500.00,1.69,7 +1872.85,0.00,500.00,0.33,6 +1899.83,0.00,500.00,5.25,6 +0.00,0.00,500.00,3.89,6 +1121.31,0.00,500.00,2.53,5 +1107.22,0.00,500.00,1.17,5 +1103.09,0.00,500.00,6.10,5 +1107.04,0.00,500.00,4.74,4 +0.00,0.00,500.00,3.38,4 +2419.24,0.00,500.00,2.02,4 +2116.67,0.00,500.00,0.66,3 +2096.56,0.00,500.00,5.58,3 +2101.20,0.00,500.00,4.22,3 +0.00,0.00,500.00,2.86,2 +0.00,0.00,500.00,1.50,2 +0.00,0.00,500.00,0.14,2 +0.00,0.00,600.00,0.00,9 +3368.21,0.00,600.00,4.92,9 +0.00,0.00,600.00,3.56,9 +0.00,0.00,600.00,2.20,8 +1445.36,0.00,600.00,0.84,8 +1453.78,0.00,600.00,5.77,8 +0.00,0.00,600.00,4.41,7 +0.00,0.00,600.00,3.05,7 +0.00,0.00,600.00,1.69,7 +2077.49,0.00,600.00,0.33,6 +2031.44,0.00,600.00,5.25,6 +0.00,0.00,600.00,3.89,6 +1283.85,0.00,600.00,2.53,5 +1263.06,0.00,600.00,1.17,5 +1268.90,0.00,600.00,6.10,5 +1262.20,0.00,600.00,4.74,4 +0.00,0.00,600.00,3.38,4 +2428.69,0.00,600.00,2.02,4 +2032.99,0.00,600.00,0.66,3 +2041.75,0.00,600.00,5.58,3 +2032.47,0.00,600.00,4.22,3 +0.00,0.00,600.00,2.86,2 +0.00,0.00,600.00,1.50,2 +0.00,0.00,600.00,0.14,2 +0.00,0.00,700.00,0.00,9 +3176.80,0.00,700.00,4.92,9 +0.00,0.00,700.00,3.56,9 +1982.99,0.00,700.00,2.20,8 +1968.90,0.00,700.00,0.84,8 +1451.03,0.00,700.00,5.77,8 +0.00,0.00,700.00,4.41,7 +0.00,0.00,700.00,3.05,7 +0.00,0.00,700.00,1.69,7 +0.00,0.00,700.00,0.33,6 +0.00,0.00,700.00,5.25,6 +0.00,0.00,700.00,3.89,6 +0.00,0.00,700.00,2.53,5 +0.00,0.00,700.00,1.17,5 +0.00,0.00,700.00,6.10,5 +0.00,0.00,700.00,4.74,4 +2468.21,0.00,700.00,3.38,4 +2472.51,0.00,700.00,2.02,4 +2003.78,0.00,700.00,0.66,3 +1956.01,0.00,700.00,5.58,3 +1974.23,0.00,700.00,4.22,3 +1984.88,0.00,700.00,2.86,2 +0.00,0.00,700.00,1.50,2 +0.00,0.00,700.00,0.14,2 +0.00,0.00,800.00,0.00,9 +3095.19,0.00,800.00,4.92,9 +0.00,0.00,800.00,3.56,9 +0.00,0.00,800.00,2.20,8 +0.00,0.00,800.00,0.84,8 +0.00,0.00,800.00,5.77,8 +0.00,0.00,800.00,4.41,7 +0.00,0.00,800.00,3.05,7 +0.00,0.00,800.00,1.69,7 +0.00,0.00,800.00,0.33,6 +0.00,0.00,800.00,5.25,6 +0.00,0.00,800.00,3.89,6 +0.00,0.00,800.00,2.53,5 +0.00,0.00,800.00,1.17,5 +0.00,0.00,800.00,6.10,5 +0.00,0.00,800.00,4.74,4 +2522.51,0.00,800.00,3.38,4 +1923.71,0.00,800.00,2.02,4 +1902.41,0.00,800.00,0.66,3 +1895.19,0.00,800.00,5.58,3 +1911.68,0.00,800.00,4.22,3 +1914.60,0.00,800.00,2.86,2 +0.00,0.00,800.00,1.50,2 +0.00,0.00,800.00,0.14,2 +0.00,0.00,800.00,1.57,9 +0.00,0.00,800.00,0.21,9 +0.00,0.00,800.00,5.13,9 +0.00,0.00,800.00,3.77,8 +0.00,0.00,800.00,2.41,8 +1623.88,0.00,800.00,1.06,8 +0.00,0.00,800.00,5.98,7 +0.00,0.00,800.00,4.62,7 +0.00,0.00,800.00,3.26,7 +2546.74,0.00,800.00,1.90,6 +1968.38,0.00,800.00,0.54,6 +1940.38,0.00,800.00,5.46,6 +1963.40,0.00,800.00,4.10,5 +0.00,0.00,800.00,2.74,5 +0.00,0.00,800.00,1.38,5 +0.00,0.00,800.00,0.02,4 +0.00,0.00,800.00,4.95,4 +1695.02,0.00,800.00,3.59,4 +1685.40,0.00,800.00,2.23,3 +3046.74,0.00,800.00,0.87,3 +0.00,0.00,800.00,5.79,3 +0.00,0.00,800.00,4.43,2 +0.00,0.00,800.00,3.07,2 +0.00,0.00,800.00,1.71,2 +0.00,-100.00,800.00,1.57,9 +0.00,-100.00,800.00,0.21,9 +0.00,-100.00,800.00,5.13,9 +0.00,-100.00,800.00,3.77,8 +1656.53,-100.00,800.00,2.41,8 +1626.98,-100.00,800.00,1.06,8 +1650.00,-100.00,800.00,5.98,7 +0.00,-100.00,800.00,4.62,7 +0.00,-100.00,800.00,3.26,7 +2712.03,-100.00,800.00,1.90,6 +2179.04,-100.00,800.00,0.54,6 +2144.50,-100.00,800.00,5.46,6 +0.00,-100.00,800.00,4.10,5 +0.00,-100.00,800.00,2.74,5 +0.00,-100.00,800.00,1.38,5 +0.00,-100.00,800.00,0.02,4 +0.00,-100.00,800.00,4.95,4 +1721.48,-100.00,800.00,3.59,4 +2993.30,-100.00,800.00,2.23,3 +3011.51,-100.00,800.00,0.87,3 +0.00,-100.00,800.00,5.79,3 +0.00,-100.00,800.00,4.43,2 +0.00,-100.00,800.00,3.07,2 +0.00,-100.00,800.00,1.71,2 +0.00,-200.00,800.00,1.57,9 +0.00,-200.00,800.00,0.21,9 +0.00,-200.00,800.00,5.13,9 +0.00,-200.00,800.00,3.77,8 +1675.77,-200.00,800.00,2.41,8 +1656.36,-200.00,800.00,1.06,8 +0.00,-200.00,800.00,5.98,7 +0.00,-200.00,800.00,4.62,7 +0.00,-200.00,800.00,3.26,7 +2859.45,-200.00,800.00,1.90,6 +2867.01,-200.00,800.00,0.54,6 +2330.24,-200.00,800.00,5.46,6 +0.00,-200.00,800.00,4.10,5 +0.00,-200.00,800.00,2.74,5 +0.00,-200.00,800.00,1.38,5 +0.00,-200.00,800.00,0.02,4 +0.00,-200.00,800.00,4.95,4 +1750.86,-200.00,800.00,3.59,4 +2991.58,-200.00,800.00,2.23,3 +0.00,-200.00,800.00,0.87,3 +0.00,-200.00,800.00,5.79,3 +0.00,-200.00,800.00,4.43,2 +0.00,-200.00,800.00,3.07,2 +0.00,-200.00,800.00,1.71,2 +0.00,-300.00,800.00,1.57,9 +0.00,-300.00,800.00,0.21,9 +0.00,-300.00,800.00,5.13,9 +1913.06,-300.00,800.00,3.77,8 +1686.60,-300.00,800.00,2.41,8 +1646.39,-300.00,800.00,1.06,8 +1684.02,-300.00,800.00,5.98,7 +1684.19,-300.00,800.00,4.62,7 +0.00,-300.00,800.00,3.26,7 +0.00,-300.00,800.00,1.90,6 +3020.79,-300.00,800.00,0.54,6 +2526.80,-300.00,800.00,5.46,6 +0.00,-300.00,800.00,4.10,5 +0.00,-300.00,800.00,2.74,5 +0.00,-300.00,800.00,1.38,5 +0.00,-300.00,800.00,0.02,4 +0.00,-300.00,800.00,4.95,4 +3003.09,-300.00,800.00,3.59,4 +2987.97,-300.00,800.00,2.23,3 +2997.77,-300.00,800.00,0.87,3 +1304.12,-300.00,800.00,5.79,3 +0.00,-300.00,800.00,4.43,2 +0.00,-300.00,800.00,3.07,2 +0.00,-300.00,800.00,1.71,2 +0.00,-400.00,800.00,1.57,9 +0.00,-400.00,800.00,0.21,9 +0.00,-400.00,800.00,5.13,9 +1799.83,-400.00,800.00,3.77,8 +0.00,-400.00,800.00,2.41,8 +1677.49,-400.00,800.00,1.06,8 +1694.50,-400.00,800.00,5.98,7 +1699.66,-400.00,800.00,4.62,7 +0.00,-400.00,800.00,3.26,7 +0.00,-400.00,800.00,1.90,6 +3182.65,-400.00,800.00,0.54,6 +2695.88,-400.00,800.00,5.46,6 +0.00,-400.00,800.00,4.10,5 +0.00,-400.00,800.00,2.74,5 +0.00,-400.00,800.00,1.38,5 +0.00,-400.00,800.00,0.02,4 +1875.09,-400.00,800.00,4.95,4 +0.00,-400.00,800.00,3.59,4 +3008.25,-400.00,800.00,2.23,3 +1166.84,-400.00,800.00,0.87,3 +1164.78,-400.00,800.00,5.79,3 +1258.42,-400.00,800.00,4.43,2 +0.00,-400.00,800.00,3.07,2 +0.00,-400.00,800.00,1.71,2 +0.00,-500.00,800.00,1.57,9 +0.00,-500.00,800.00,0.21,9 +3042.10,-500.00,800.00,5.13,9 +0.00,-500.00,800.00,3.77,8 +0.00,-500.00,800.00,2.41,8 +0.00,-500.00,800.00,1.06,8 +0.00,-500.00,800.00,5.98,7 +0.00,-500.00,800.00,4.62,7 +0.00,-500.00,800.00,3.26,7 +0.00,-500.00,800.00,1.90,6 +3323.88,-500.00,800.00,0.54,6 +2873.20,-500.00,800.00,5.46,6 +0.00,-500.00,800.00,4.10,5 +0.00,-500.00,800.00,2.74,5 +0.00,-500.00,800.00,1.38,5 +0.00,-500.00,800.00,0.02,4 +0.00,-500.00,800.00,4.95,4 +0.00,-500.00,800.00,3.59,4 +1080.07,-500.00,800.00,2.23,3 +1053.26,-500.00,800.00,0.87,3 +860.82,-500.00,800.00,5.79,3 +0.00,-500.00,800.00,4.43,2 +0.00,-500.00,800.00,3.07,2 +0.00,-500.00,800.00,1.71,2 +0.00,-600.00,800.00,1.57,9 +0.00,-600.00,800.00,0.21,9 +2861.51,-600.00,800.00,5.13,9 +1611.86,-600.00,800.00,3.77,8 +0.00,-600.00,800.00,2.41,8 +0.00,-600.00,800.00,1.06,8 +0.00,-600.00,800.00,5.98,7 +0.00,-600.00,800.00,4.62,7 +0.00,-600.00,800.00,3.26,7 +0.00,-600.00,800.00,1.90,6 +3499.14,-600.00,800.00,0.54,6 +3061.34,-600.00,800.00,5.46,6 +0.00,-600.00,800.00,4.10,5 +0.00,-600.00,800.00,2.74,5 +0.00,-600.00,800.00,1.38,5 +0.00,-600.00,800.00,0.02,4 +0.00,-600.00,800.00,4.95,4 +2984.88,-600.00,800.00,3.59,4 +1028.35,-600.00,800.00,2.23,3 +936.25,-600.00,800.00,0.87,3 +858.59,-600.00,800.00,5.79,3 +0.00,-600.00,800.00,4.43,2 +1228.18,-600.00,800.00,3.07,2 +1286.94,-600.00,800.00,1.71,2 +0.00,-600.00,800.00,3.14,9 +0.00,-600.00,800.00,1.78,9 +0.00,-600.00,800.00,0.42,9 +3099.14,-600.00,800.00,5.35,8 +3042.44,-600.00,800.00,3.99,8 +3069.76,-600.00,800.00,2.63,8 +3055.33,-600.00,800.00,1.27,7 +0.00,-600.00,800.00,6.19,7 +0.00,-600.00,800.00,4.83,7 +2076.46,-600.00,800.00,3.47,6 +3025.77,-600.00,800.00,2.11,6 +1062.37,-600.00,800.00,0.75,6 +0.00,-600.00,800.00,5.67,5 +1072.16,-600.00,800.00,4.31,5 +0.00,-600.00,800.00,2.95,5 +1019.93,-600.00,800.00,1.59,4 +1111.86,-600.00,800.00,0.23,4 +0.00,-600.00,800.00,5.16,4 +2891.58,-600.00,800.00,3.80,3 +2857.22,-600.00,800.00,2.44,3 +1591.41,-600.00,800.00,1.08,3 +0.00,-600.00,800.00,6.00,2 +0.00,-600.00,800.00,4.64,2 +0.00,-600.00,800.00,3.28,2 +0.00,-600.00,700.00,3.14,9 +0.00,-600.00,700.00,1.78,9 +0.00,-600.00,700.00,0.42,9 +3038.83,-600.00,700.00,5.35,8 +3031.10,-600.00,700.00,3.99,8 +3001.89,-600.00,700.00,2.63,8 +0.00,-600.00,700.00,1.27,7 +0.00,-600.00,700.00,6.19,7 +0.00,-600.00,700.00,4.83,7 +0.00,-600.00,700.00,3.47,6 +0.00,-600.00,700.00,2.11,6 +3210.14,-600.00,700.00,0.75,6 +0.00,-600.00,700.00,5.67,5 +0.00,-600.00,700.00,4.31,5 +0.00,-600.00,700.00,2.95,5 +1064.78,-600.00,700.00,1.59,4 +0.00,-600.00,700.00,0.23,4 +0.00,-600.00,700.00,5.16,4 +2795.53,-600.00,700.00,3.80,3 +2793.13,-600.00,700.00,2.44,3 +1456.53,-600.00,700.00,1.08,3 +0.00,-600.00,700.00,6.00,2 +0.00,-600.00,700.00,4.64,2 +0.00,-600.00,700.00,3.28,2 +0.00,-600.00,600.00,3.14,9 +0.00,-600.00,600.00,1.78,9 +0.00,-600.00,600.00,0.42,9 +2973.71,-600.00,600.00,5.35,8 +2959.28,-600.00,600.00,3.99,8 +3086.08,-600.00,600.00,2.63,8 +3104.64,-600.00,600.00,1.27,7 +0.00,-600.00,600.00,6.19,7 +0.00,-600.00,600.00,4.83,7 +0.00,-600.00,600.00,3.47,6 +0.00,-600.00,600.00,2.11,6 +3401.55,-600.00,600.00,0.75,6 +0.00,-600.00,600.00,5.67,5 +0.00,-600.00,600.00,4.31,5 +0.00,-600.00,600.00,2.95,5 +1226.46,-600.00,600.00,1.59,4 +0.00,-600.00,600.00,0.23,4 +0.00,-600.00,600.00,5.16,4 +2796.91,-600.00,600.00,3.80,3 +0.00,-600.00,600.00,2.44,3 +1342.78,-600.00,600.00,1.08,3 +0.00,-600.00,600.00,6.00,2 +0.00,-600.00,600.00,4.64,2 +0.00,-600.00,600.00,3.28,2 +0.00,-600.00,500.00,3.14,9 +0.00,-600.00,500.00,1.78,9 +0.00,-600.00,500.00,0.42,9 +2918.04,-600.00,500.00,5.35,8 +3097.42,-600.00,500.00,3.99,8 +3088.14,-600.00,500.00,2.63,8 +2943.30,-600.00,500.00,1.27,7 +0.00,-600.00,500.00,6.19,7 +0.00,-600.00,500.00,4.83,7 +0.00,-600.00,500.00,3.47,6 +3552.23,-600.00,500.00,2.11,6 +3549.14,-600.00,500.00,0.75,6 +0.00,-600.00,500.00,5.67,5 +0.00,-600.00,500.00,4.31,5 +0.00,-600.00,500.00,2.95,5 +1739.52,-600.00,500.00,1.59,4 +0.00,-600.00,500.00,0.23,4 +0.00,-600.00,500.00,5.16,4 +0.00,-600.00,500.00,3.80,3 +1255.84,-600.00,500.00,2.44,3 +1254.81,-600.00,500.00,1.08,3 +0.00,-600.00,500.00,6.00,2 +0.00,-600.00,500.00,4.64,2 +0.00,-600.00,500.00,3.28,2 +0.00,-600.00,400.00,3.14,9 +0.00,-600.00,400.00,1.78,9 +0.00,-600.00,400.00,0.42,9 +2877.66,-600.00,400.00,5.35,8 +2847.25,-600.00,400.00,3.99,8 +3112.03,-600.00,400.00,2.63,8 +3117.87,-600.00,400.00,1.27,7 +0.00,-600.00,400.00,6.19,7 +0.00,-600.00,400.00,4.83,7 +0.00,-600.00,400.00,3.47,6 +3733.85,-600.00,400.00,2.11,6 +3736.60,-600.00,400.00,0.75,6 +0.00,-600.00,400.00,5.67,5 +0.00,-600.00,400.00,4.31,5 +0.00,-600.00,400.00,2.95,5 +0.00,-600.00,400.00,1.59,4 +0.00,-600.00,400.00,0.23,4 +0.00,-600.00,400.00,5.16,4 +1177.15,-600.00,400.00,3.80,3 +1168.73,-600.00,400.00,2.44,3 +1222.68,-600.00,400.00,1.08,3 +0.00,-600.00,400.00,6.00,2 +0.00,-600.00,400.00,4.64,2 +0.00,-600.00,400.00,3.28,2 +0.00,-600.00,300.00,3.14,9 +0.00,-600.00,300.00,1.78,9 +2867.87,-600.00,300.00,0.42,9 +2784.71,-600.00,300.00,5.35,8 +2766.32,-600.00,300.00,3.99,8 +3091.92,-600.00,300.00,2.63,8 +3138.66,-600.00,300.00,1.27,7 +0.00,-600.00,300.00,6.19,7 +0.00,-600.00,300.00,4.83,7 +0.00,-600.00,300.00,3.47,6 +0.00,-600.00,300.00,2.11,6 +0.00,-600.00,300.00,0.75,6 +0.00,-600.00,300.00,5.67,5 +0.00,-600.00,300.00,4.31,5 +0.00,-600.00,300.00,2.95,5 +0.00,-600.00,300.00,1.59,4 +0.00,-600.00,300.00,0.23,4 +0.00,-600.00,300.00,5.16,4 +1110.31,-600.00,300.00,3.80,3 +1103.44,-600.00,300.00,2.44,3 +0.00,-600.00,300.00,1.08,3 +0.00,-600.00,300.00,6.00,2 +0.00,-600.00,300.00,4.64,2 +0.00,-600.00,300.00,3.28,2 +0.00,-600.00,200.00,3.14,9 +0.00,-600.00,200.00,1.78,9 +2747.59,-600.00,200.00,0.42,9 +2678.52,-600.00,200.00,5.35,8 +2691.07,-600.00,200.00,3.99,8 +3093.13,-600.00,200.00,2.63,8 +0.00,-600.00,200.00,1.27,7 +0.00,-600.00,200.00,6.19,7 +0.00,-600.00,200.00,4.83,7 +0.00,-600.00,200.00,3.47,6 +0.00,-600.00,200.00,2.11,6 +0.00,-600.00,200.00,0.75,6 +0.00,-600.00,200.00,5.67,5 +0.00,-600.00,200.00,4.31,5 +0.00,-600.00,200.00,2.95,5 +0.00,-600.00,200.00,1.59,4 +0.00,-600.00,200.00,0.23,4 +0.00,-600.00,200.00,5.16,4 +1096.22,-600.00,200.00,3.80,3 +1101.37,-600.00,200.00,2.44,3 +0.00,-600.00,200.00,1.08,3 +0.00,-600.00,200.00,6.00,2 +0.00,-600.00,200.00,4.64,2 +0.00,-600.00,200.00,3.28,2 +0.00,-600.00,200.00,4.71,9 +0.00,-600.00,200.00,3.35,9 +0.00,-600.00,200.00,1.99,9 +4012.03,-600.00,200.00,0.63,8 +0.00,-600.00,200.00,5.56,8 +2017.87,-600.00,200.00,4.20,8 +0.00,-600.00,200.00,2.84,7 +0.00,-600.00,200.00,1.48,7 +0.00,-600.00,200.00,0.12,7 +0.00,-600.00,200.00,5.04,6 +0.00,-600.00,200.00,3.68,6 +0.00,-600.00,200.00,2.32,6 +0.00,-600.00,200.00,0.96,5 +0.00,-600.00,200.00,5.88,5 +0.00,-600.00,200.00,4.52,5 +0.00,-600.00,200.00,3.16,4 +0.00,-600.00,200.00,1.80,4 +0.00,-600.00,200.00,0.44,4 +0.00,-600.00,200.00,5.37,3 +2731.61,-600.00,200.00,4.01,3 +2663.92,-600.00,200.00,2.65,3 +2725.60,-600.00,200.00,1.29,2 +0.00,-600.00,200.00,6.22,2 +0.00,-600.00,200.00,4.86,2 +0.00,-500.00,200.00,4.71,9 +0.00,-500.00,200.00,3.35,9 +0.00,-500.00,200.00,1.99,9 +3937.63,-500.00,200.00,0.63,8 +1451.55,-500.00,200.00,5.56,8 +2093.81,-500.00,200.00,4.20,8 +0.00,-500.00,200.00,2.84,7 +0.00,-500.00,200.00,1.48,7 +0.00,-500.00,200.00,0.12,7 +0.00,-500.00,200.00,5.04,6 +1307.39,-500.00,200.00,3.68,6 +1323.54,-500.00,200.00,2.32,6 +0.00,-500.00,200.00,0.96,5 +0.00,-500.00,200.00,5.88,5 +768.90,-500.00,200.00,4.52,5 +757.04,-500.00,200.00,3.16,4 +765.12,-500.00,200.00,1.80,4 +0.00,-500.00,200.00,0.44,4 +2673.54,-500.00,200.00,5.37,3 +2641.75,-500.00,200.00,4.01,3 +2532.13,-500.00,200.00,2.65,3 +0.00,-500.00,200.00,1.29,2 +0.00,-500.00,200.00,6.22,2 +0.00,-500.00,200.00,4.86,2 +0.00,-400.00,200.00,4.71,9 +0.00,-400.00,200.00,3.35,9 +3775.43,-400.00,200.00,1.99,9 +3770.27,-400.00,200.00,0.63,8 +2030.93,-400.00,200.00,5.56,8 +1460.82,-400.00,200.00,4.20,8 +0.00,-400.00,200.00,2.84,7 +0.00,-400.00,200.00,1.48,7 +0.00,-400.00,200.00,0.12,7 +0.00,-400.00,200.00,5.04,6 +1490.21,-400.00,200.00,3.68,6 +1462.71,-400.00,200.00,2.32,6 +0.00,-400.00,200.00,0.96,5 +0.00,-400.00,200.00,5.88,5 +891.58,-400.00,200.00,4.52,5 +878.87,-400.00,200.00,3.16,4 +879.55,-400.00,200.00,1.80,4 +1825.77,-400.00,200.00,0.44,4 +1838.14,-400.00,200.00,5.37,3 +2436.08,-400.00,200.00,4.01,3 +2423.71,-400.00,200.00,2.65,3 +0.00,-400.00,200.00,1.29,2 +0.00,-400.00,200.00,6.22,2 +0.00,-400.00,200.00,4.86,2 +0.00,-300.00,200.00,4.71,9 +0.00,-300.00,200.00,3.35,9 +0.00,-300.00,200.00,1.99,9 +3640.21,-300.00,200.00,0.63,8 +2000.34,-300.00,200.00,5.56,8 +0.00,-300.00,200.00,4.20,8 +0.00,-300.00,200.00,2.84,7 +0.00,-300.00,200.00,1.48,7 +0.00,-300.00,200.00,0.12,7 +0.00,-300.00,200.00,5.04,6 +1670.62,-300.00,200.00,3.68,6 +1683.33,-300.00,200.00,2.32,6 +0.00,-300.00,200.00,0.96,5 +0.00,-300.00,200.00,5.88,5 +0.00,-300.00,200.00,4.52,5 +1003.44,-300.00,200.00,3.16,4 +1015.46,-300.00,200.00,1.80,4 +0.00,-300.00,200.00,0.44,4 +2529.72,-300.00,200.00,5.37,3 +2308.76,-300.00,200.00,4.01,3 +2289.69,-300.00,200.00,2.65,3 +2307.90,-300.00,200.00,1.29,2 +0.00,-300.00,200.00,6.22,2 +0.00,-300.00,200.00,4.86,2 +0.00,-200.00,200.00,4.71,9 +0.00,-200.00,200.00,3.35,9 +0.00,-200.00,200.00,1.99,9 +3484.88,-200.00,200.00,0.63,8 +0.00,-200.00,200.00,5.56,8 +1357.73,-200.00,200.00,4.20,8 +0.00,-200.00,200.00,2.84,7 +0.00,-200.00,200.00,1.48,7 +0.00,-200.00,200.00,0.12,7 +0.00,-200.00,200.00,5.04,6 +0.00,-200.00,200.00,3.68,6 +1835.57,-200.00,200.00,2.32,6 +0.00,-200.00,200.00,0.96,5 +0.00,-200.00,200.00,5.88,5 +1141.41,-200.00,200.00,4.52,5 +1145.19,-200.00,200.00,3.16,4 +1147.42,-200.00,200.00,1.80,4 +0.00,-200.00,200.00,0.44,4 +2211.86,-200.00,200.00,5.37,3 +2182.82,-200.00,200.00,4.01,3 +2173.37,-200.00,200.00,2.65,3 +2177.83,-200.00,200.00,1.29,2 +2179.21,-200.00,200.00,6.22,2 +2424.40,-200.00,200.00,4.86,2 +0.00,-100.00,200.00,4.71,9 +0.00,-100.00,200.00,3.35,9 +0.00,-100.00,200.00,1.99,9 +0.00,-100.00,200.00,0.63,8 +0.00,-100.00,200.00,5.56,8 +0.00,-100.00,200.00,4.20,8 +0.00,-100.00,200.00,2.84,7 +0.00,-100.00,200.00,1.48,7 +0.00,-100.00,200.00,0.12,7 +0.00,-100.00,200.00,5.04,6 +0.00,-100.00,200.00,3.68,6 +0.00,-100.00,200.00,2.32,6 +0.00,-100.00,200.00,0.96,5 +1282.13,-100.00,200.00,5.88,5 +1283.68,-100.00,200.00,4.52,5 +1276.29,-100.00,200.00,3.16,4 +1297.25,-100.00,200.00,1.80,4 +2481.96,-100.00,200.00,0.44,4 +2095.53,-100.00,200.00,5.37,3 +2081.10,-100.00,200.00,4.01,3 +2073.20,-100.00,200.00,2.65,3 +2086.94,-100.00,200.00,1.29,2 +0.00,-100.00,200.00,6.22,2 +0.00,-100.00,200.00,4.86,2 +0.00,0.00,200.00,4.71,9 +3206.53,0.00,200.00,3.35,9 +3198.45,0.00,200.00,1.99,9 +3286.25,0.00,200.00,0.63,8 +0.00,0.00,200.00,5.56,8 +0.00,0.00,200.00,4.20,8 +0.00,0.00,200.00,2.84,7 +0.00,0.00,200.00,1.48,7 +0.00,0.00,200.00,0.12,7 +0.00,0.00,200.00,5.04,6 +0.00,0.00,200.00,3.68,6 +0.00,0.00,200.00,2.32,6 +0.00,0.00,200.00,0.96,5 +0.00,0.00,200.00,5.88,5 +0.00,0.00,200.00,4.52,5 +1448.45,0.00,200.00,3.16,4 +0.00,0.00,200.00,1.80,4 +2461.34,0.00,200.00,0.44,4 +2014.09,0.00,200.00,5.37,3 +1969.42,0.00,200.00,4.01,3 +1965.64,0.00,200.00,2.65,3 +1967.53,0.00,200.00,1.29,2 +1985.22,0.00,200.00,6.22,2 +0.00,0.00,200.00,4.86,2 +0.00,0.00,200.00,0.00,9 +0.00,0.00,200.00,4.92,9 +0.00,0.00,200.00,3.56,9 +0.00,0.00,200.00,2.20,8 +0.00,0.00,200.00,0.84,8 +0.00,0.00,200.00,5.77,8 +0.00,0.00,200.00,4.41,7 +1452.23,0.00,200.00,3.05,7 +1448.45,0.00,200.00,1.69,7 +0.00,0.00,200.00,0.33,6 +2512.54,0.00,200.00,5.25,6 +2480.41,0.00,200.00,3.89,6 +2038.49,0.00,200.00,2.53,5 +0.00,0.00,200.00,1.17,5 +0.00,0.00,200.00,6.10,5 +2020.96,0.00,200.00,4.74,4 +2147.94,0.00,200.00,3.38,4 +0.00,0.00,200.00,2.02,4 +1861.51,0.00,200.00,0.66,3 +1858.59,0.00,200.00,5.58,3 +3206.53,0.00,200.00,4.22,3 +0.00,0.00,200.00,2.86,2 +0.00,0.00,200.00,1.50,2 +0.00,0.00,200.00,0.14,2 +1229.55,0.00,300.00,0.00,9 +0.00,0.00,300.00,4.92,9 +0.00,0.00,300.00,3.56,9 +2085.74,0.00,300.00,2.20,8 +0.00,0.00,300.00,0.84,8 +1523.37,0.00,300.00,5.77,8 +0.00,0.00,300.00,4.41,7 +1528.87,0.00,300.00,3.05,7 +1520.62,0.00,300.00,1.69,7 +0.00,0.00,300.00,0.33,6 +2661.00,0.00,300.00,5.25,6 +2206.19,0.00,300.00,3.89,6 +0.00,0.00,300.00,2.53,5 +0.00,0.00,300.00,1.17,5 +0.00,0.00,300.00,6.10,5 +2179.72,0.00,300.00,4.74,4 +0.00,0.00,300.00,3.38,4 +0.00,0.00,300.00,2.02,4 +1817.01,0.00,300.00,0.66,3 +1851.72,0.00,300.00,5.58,3 +3139.52,0.00,300.00,4.22,3 +0.00,0.00,300.00,2.86,2 +0.00,0.00,300.00,1.50,2 +0.00,0.00,300.00,0.14,2 +1463.23,0.00,300.00,1.57,9 +1464.60,0.00,300.00,0.21,9 +0.00,0.00,300.00,5.13,9 +2651.03,0.00,300.00,3.77,8 +2180.24,0.00,300.00,2.41,8 +2156.36,0.00,300.00,1.06,8 +2158.25,0.00,300.00,5.98,7 +2159.11,0.00,300.00,4.62,7 +2287.46,0.00,300.00,3.26,7 +2305.84,0.00,300.00,1.90,6 +0.00,0.00,300.00,0.54,6 +1868.73,0.00,300.00,5.46,6 +0.00,0.00,300.00,4.10,5 +0.00,0.00,300.00,2.74,5 +0.00,0.00,300.00,1.38,5 +0.00,0.00,300.00,0.02,4 +0.00,0.00,300.00,4.95,4 +0.00,0.00,300.00,3.59,4 +0.00,0.00,300.00,2.23,3 +0.00,0.00,300.00,0.87,3 +2077.15,0.00,300.00,5.79,3 +0.00,0.00,300.00,4.43,2 +0.00,0.00,300.00,3.07,2 +0.00,0.00,300.00,1.71,2 +2104.47,0.00,300.00,3.14,9 +2227.49,0.00,300.00,1.78,9 +0.00,0.00,300.00,0.42,9 +0.00,0.00,300.00,5.35,8 +1816.84,0.00,300.00,3.99,8 +3122.85,0.00,300.00,2.63,8 +3140.38,0.00,300.00,1.27,7 +0.00,0.00,300.00,6.19,7 +0.00,0.00,300.00,4.83,7 +1279.38,0.00,300.00,3.47,6 +0.00,0.00,300.00,2.11,6 +0.00,0.00,300.00,0.75,6 +0.00,0.00,300.00,5.67,5 +0.00,0.00,300.00,4.31,5 +0.00,0.00,300.00,2.95,5 +0.00,0.00,300.00,1.59,4 +0.00,0.00,300.00,0.23,4 +1482.65,0.00,300.00,5.16,4 +1487.46,0.00,300.00,3.80,3 +2629.21,0.00,300.00,2.44,3 +2603.09,0.00,300.00,1.08,3 +2632.99,0.00,300.00,6.00,2 +0.00,0.00,300.00,4.64,2 +2114.60,0.00,300.00,3.28,2 +0.00,0.00,300.00,4.71,9 +0.00,0.00,300.00,3.35,9 +0.00,0.00,300.00,1.99,9 +1901.89,0.00,300.00,0.63,8 +0.00,0.00,300.00,5.56,8 +0.00,0.00,300.00,4.20,8 +0.00,0.00,300.00,2.84,7 +0.00,0.00,300.00,1.48,7 +0.00,0.00,300.00,0.12,7 +0.00,0.00,300.00,5.04,6 +1537.63,0.00,300.00,3.68,6 +1539.86,0.00,300.00,2.32,6 +0.00,0.00,300.00,0.96,5 +0.00,0.00,300.00,5.88,5 +0.00,0.00,300.00,4.52,5 +2638.32,0.00,300.00,3.16,4 +2140.55,0.00,300.00,1.80,4 +2133.33,0.00,300.00,0.44,4 +2138.14,0.00,300.00,5.37,3 +0.00,0.00,300.00,4.01,3 +0.00,0.00,300.00,2.65,3 +0.00,0.00,300.00,1.29,2 +3115.12,0.00,300.00,6.22,2 +3123.20,0.00,300.00,4.86,2 +0.00,0.00,300.00,0.00,9 +0.00,0.00,300.00,4.92,9 +0.00,0.00,300.00,3.56,9 +1508.42,0.00,300.00,2.20,8 +1499.66,0.00,300.00,0.84,8 +1502.92,0.00,300.00,5.77,8 +1545.36,0.00,300.00,4.41,7 +2662.71,0.00,300.00,3.05,7 +2668.21,0.00,300.00,1.69,7 +2187.97,0.00,300.00,0.33,6 +2140.21,0.00,300.00,5.25,6 +2152.06,0.00,300.00,3.89,6 +0.00,0.00,300.00,2.53,5 +0.00,0.00,300.00,1.17,5 +0.00,0.00,300.00,6.10,5 +0.00,0.00,300.00,4.74,4 +1818.21,0.00,300.00,3.38,4 +3123.71,0.00,300.00,2.02,4 +0.00,0.00,300.00,0.66,3 +1594.16,0.00,300.00,5.58,3 +0.00,0.00,300.00,4.22,3 +0.00,0.00,300.00,2.86,2 +0.00,0.00,300.00,1.50,2 +0.00,0.00,300.00,0.14,2 +0.00,0.00,400.00,0.00,9 +0.00,0.00,400.00,4.92,9 +0.00,0.00,400.00,3.56,9 +1436.60,0.00,400.00,2.20,8 +1424.74,0.00,400.00,0.84,8 +1434.88,0.00,400.00,5.77,8 +1488.49,0.00,400.00,4.41,7 +2774.23,0.00,400.00,3.05,7 +2745.88,0.00,400.00,1.69,7 +2392.78,0.00,400.00,0.33,6 +2322.16,0.00,400.00,5.25,6 +2338.66,0.00,400.00,3.89,6 +0.00,0.00,400.00,2.53,5 +0.00,0.00,400.00,1.17,5 +0.00,0.00,400.00,6.10,5 +0.00,0.00,400.00,4.74,4 +3223.88,0.00,400.00,3.38,4 +0.00,0.00,400.00,2.02,4 +1650.00,0.00,400.00,0.66,3 +1008.76,0.00,400.00,5.58,3 +1007.39,0.00,400.00,4.22,3 +0.00,0.00,400.00,2.86,2 +0.00,0.00,400.00,1.50,2 +0.00,0.00,400.00,0.14,2 +0.00,0.00,500.00,0.00,9 +1734.71,0.00,500.00,4.92,9 +0.00,0.00,500.00,3.56,9 +1370.79,0.00,500.00,2.20,8 +1351.03,0.00,500.00,0.84,8 +1362.20,0.00,500.00,5.77,8 +1385.40,0.00,500.00,4.41,7 +0.00,0.00,500.00,3.05,7 +2847.42,0.00,500.00,1.69,7 +2551.20,0.00,500.00,0.33,6 +2497.94,0.00,500.00,5.25,6 +2491.75,0.00,500.00,3.89,6 +0.00,0.00,500.00,2.53,5 +0.00,0.00,500.00,1.17,5 +0.00,0.00,500.00,6.10,5 +0.00,0.00,500.00,4.74,4 +3290.55,0.00,500.00,3.38,4 +0.00,0.00,500.00,2.02,4 +0.00,0.00,500.00,0.66,3 +918.04,0.00,500.00,5.58,3 +959.11,0.00,500.00,4.22,3 +0.00,0.00,500.00,2.86,2 +0.00,0.00,500.00,1.50,2 +0.00,0.00,500.00,0.14,2 +0.00,0.00,600.00,0.00,9 +0.00,0.00,600.00,4.92,9 +0.00,0.00,600.00,3.56,9 +1334.36,0.00,600.00,2.20,8 +1290.89,0.00,600.00,0.84,8 +1282.13,0.00,600.00,5.77,8 +1312.54,0.00,600.00,4.41,7 +0.00,0.00,600.00,3.05,7 +0.00,0.00,600.00,1.69,7 +2654.98,0.00,600.00,0.33,6 +2678.18,0.00,600.00,5.25,6 +2797.59,0.00,600.00,3.89,6 +0.00,0.00,600.00,2.53,5 +0.00,0.00,600.00,1.17,5 +0.00,0.00,600.00,6.10,5 +0.00,0.00,600.00,4.74,4 +3358.08,0.00,600.00,3.38,4 +0.00,0.00,600.00,2.02,4 +863.23,0.00,600.00,0.66,3 +861.34,0.00,600.00,5.58,3 +1138.66,0.00,600.00,4.22,3 +0.00,0.00,600.00,2.86,2 +0.00,0.00,600.00,1.50,2 +0.00,0.00,600.00,0.14,2 +0.00,0.00,700.00,0.00,9 +0.00,0.00,700.00,4.92,9 +0.00,0.00,700.00,3.56,9 +0.00,0.00,700.00,2.20,8 +0.00,0.00,700.00,0.84,8 +0.00,0.00,700.00,5.77,8 +0.00,0.00,700.00,4.41,7 +0.00,0.00,700.00,3.05,7 +3111.68,0.00,700.00,1.69,7 +2814.43,0.00,700.00,0.33,6 +2803.09,0.00,700.00,5.25,6 +2839.86,0.00,700.00,3.89,6 +0.00,0.00,700.00,2.53,5 +0.00,0.00,700.00,1.17,5 +0.00,0.00,700.00,6.10,5 +0.00,0.00,700.00,4.74,4 +0.00,0.00,700.00,3.38,4 +3482.99,0.00,700.00,2.02,4 +864.78,0.00,700.00,0.66,3 +849.48,0.00,700.00,5.58,3 +0.00,0.00,700.00,4.22,3 +0.00,0.00,700.00,2.86,2 +0.00,0.00,700.00,1.50,2 +0.00,0.00,700.00,0.14,2 +1225.26,0.00,800.00,0.00,9 +1184.19,0.00,800.00,4.92,9 +0.00,0.00,800.00,3.56,9 +0.00,0.00,800.00,2.20,8 +0.00,0.00,800.00,0.84,8 +0.00,0.00,800.00,5.77,8 +0.00,0.00,800.00,4.41,7 +0.00,0.00,800.00,3.05,7 +3197.25,0.00,800.00,1.69,7 +3197.08,0.00,800.00,0.33,6 +2995.53,0.00,800.00,5.25,6 +3194.85,0.00,800.00,3.89,6 +0.00,0.00,800.00,2.53,5 +0.00,0.00,800.00,1.17,5 +0.00,0.00,800.00,6.10,5 +0.00,0.00,800.00,4.74,4 +0.00,0.00,800.00,3.38,4 +1515.12,0.00,800.00,2.02,4 +861.17,0.00,800.00,0.66,3 +1522.85,0.00,800.00,5.58,3 +0.00,0.00,800.00,4.22,3 +0.00,0.00,800.00,2.86,2 +0.00,0.00,800.00,1.50,2 +0.00,0.00,800.00,0.14,2 +0.00,0.00,800.00,1.57,9 +3197.94,0.00,800.00,0.21,9 +3178.69,0.00,800.00,5.13,9 +3166.49,0.00,800.00,3.77,8 +3158.25,0.00,800.00,2.41,8 +0.00,0.00,800.00,1.06,8 +0.00,0.00,800.00,5.98,7 +0.00,0.00,800.00,4.62,7 +0.00,0.00,800.00,3.26,7 +0.00,0.00,800.00,1.90,6 +1552.06,0.00,800.00,0.54,6 +1475.09,0.00,800.00,5.46,6 +0.00,0.00,800.00,4.10,5 +0.00,0.00,800.00,2.74,5 +0.00,0.00,800.00,1.38,5 +0.00,0.00,800.00,0.02,4 +0.00,0.00,800.00,4.95,4 +1279.55,0.00,800.00,3.59,4 +1194.85,0.00,800.00,2.23,3 +0.00,0.00,800.00,0.87,3 +0.00,0.00,800.00,5.79,3 +0.00,0.00,800.00,4.43,2 +0.00,0.00,800.00,3.07,2 +0.00,0.00,800.00,1.71,2 +0.00,0.00,800.00,3.14,9 +0.00,0.00,800.00,1.78,9 +0.00,0.00,800.00,0.42,9 +1459.45,0.00,800.00,5.35,8 +1305.50,0.00,800.00,3.99,8 +1435.91,0.00,800.00,2.63,8 +0.00,0.00,800.00,1.27,7 +0.00,0.00,800.00,6.19,7 +0.00,0.00,800.00,4.83,7 +2772.34,0.00,800.00,3.47,6 +1229.38,0.00,800.00,2.11,6 +0.00,0.00,800.00,0.75,6 +0.00,0.00,800.00,5.67,5 +0.00,0.00,800.00,4.31,5 +0.00,0.00,800.00,2.95,5 +0.00,0.00,800.00,1.59,4 +0.00,0.00,800.00,0.23,4 +0.00,0.00,800.00,5.16,4 +3144.67,0.00,800.00,3.80,3 +2970.62,0.00,800.00,2.44,3 +2945.53,0.00,800.00,1.08,3 +0.00,0.00,800.00,6.00,2 +0.00,0.00,800.00,4.64,2 +0.00,0.00,800.00,3.28,2 +0.00,0.00,700.00,3.14,9 +3395.53,0.00,700.00,1.78,9 +0.00,0.00,700.00,0.42,9 +0.00,0.00,700.00,5.35,8 +755.84,0.00,700.00,3.99,8 +1379.04,0.00,700.00,2.63,8 +1619.76,0.00,700.00,1.27,7 +0.00,0.00,700.00,6.19,7 +0.00,0.00,700.00,4.83,7 +0.00,0.00,700.00,3.47,6 +2892.44,0.00,700.00,2.11,6 +0.00,0.00,700.00,0.75,6 +0.00,0.00,700.00,5.67,5 +0.00,0.00,700.00,4.31,5 +0.00,0.00,700.00,2.95,5 +0.00,0.00,700.00,1.59,4 +0.00,0.00,700.00,0.23,4 +0.00,0.00,700.00,5.16,4 +2881.96,0.00,700.00,3.80,3 +2855.84,0.00,700.00,2.44,3 +3005.33,0.00,700.00,1.08,3 +0.00,0.00,700.00,6.00,2 +0.00,0.00,700.00,4.64,2 +0.00,0.00,700.00,3.28,2 +0.00,0.00,600.00,3.14,9 +3191.41,0.00,600.00,1.78,9 +1324.23,0.00,600.00,0.42,9 +1365.98,0.00,600.00,5.35,8 +1224.23,0.00,600.00,3.99,8 +1219.24,0.00,600.00,2.63,8 +0.00,0.00,600.00,1.27,7 +0.00,0.00,600.00,6.19,7 +0.00,0.00,600.00,4.83,7 +3010.14,0.00,600.00,3.47,6 +3016.67,0.00,600.00,2.11,6 +1635.74,0.00,600.00,0.75,6 +0.00,0.00,600.00,5.67,5 +0.00,0.00,600.00,4.31,5 +0.00,0.00,600.00,2.95,5 +0.00,0.00,600.00,1.59,4 +0.00,0.00,600.00,0.23,4 +0.00,0.00,600.00,5.16,4 +2778.69,0.00,600.00,3.80,3 +2773.88,0.00,600.00,2.44,3 +2792.27,0.00,600.00,1.08,3 +2880.93,0.00,600.00,6.00,2 +0.00,0.00,600.00,4.64,2 +0.00,0.00,600.00,3.28,2 +0.00,0.00,500.00,3.14,9 +3055.67,0.00,500.00,1.78,9 +1252.92,0.00,500.00,0.42,9 +1252.41,0.00,500.00,5.35,8 +1186.94,0.00,500.00,3.99,8 +1125.09,0.00,500.00,2.63,8 +0.00,0.00,500.00,1.27,7 +0.00,0.00,500.00,6.19,7 +0.00,0.00,500.00,4.83,7 +3151.37,0.00,500.00,3.47,6 +3133.33,0.00,500.00,2.11,6 +1746.74,0.00,500.00,0.75,6 +0.00,0.00,500.00,5.67,5 +0.00,0.00,500.00,4.31,5 +0.00,0.00,500.00,2.95,5 +1615.98,0.00,500.00,1.59,4 +0.00,0.00,500.00,0.23,4 +0.00,0.00,500.00,5.16,4 +2726.63,0.00,500.00,3.80,3 +2696.56,0.00,500.00,2.44,3 +2724.74,0.00,500.00,1.08,3 +0.00,0.00,500.00,6.00,2 +0.00,0.00,500.00,4.64,2 +0.00,0.00,500.00,3.28,2 +0.00,0.00,400.00,3.14,9 +2913.92,0.00,400.00,1.78,9 +0.00,0.00,400.00,0.42,9 +1138.83,0.00,400.00,5.35,8 +1204.98,0.00,400.00,3.99,8 +1165.12,0.00,400.00,2.63,8 +0.00,0.00,400.00,1.27,7 +0.00,0.00,400.00,6.19,7 +0.00,0.00,400.00,4.83,7 +3280.24,0.00,400.00,3.47,6 +3279.04,0.00,400.00,2.11,6 +0.00,0.00,400.00,0.75,6 +0.00,0.00,400.00,5.67,5 +0.00,0.00,400.00,4.31,5 +1782.47,0.00,400.00,2.95,5 +1773.20,0.00,400.00,1.59,4 +0.00,0.00,400.00,0.23,4 +0.00,0.00,400.00,5.16,4 +2640.72,0.00,400.00,3.80,3 +2627.15,0.00,400.00,2.44,3 +2635.22,0.00,400.00,1.08,3 +2638.83,0.00,400.00,6.00,2 +0.00,0.00,400.00,4.64,2 +0.00,0.00,400.00,3.28,2 +1563.75,0.00,300.00,3.14,9 +2765.46,0.00,300.00,1.78,9 +0.00,0.00,300.00,0.42,9 +1527.66,0.00,300.00,5.35,8 +1138.83,0.00,300.00,3.99,8 +1192.96,0.00,300.00,2.63,8 +0.00,0.00,300.00,1.27,7 +0.00,0.00,300.00,6.19,7 +0.00,0.00,300.00,4.83,7 +0.00,0.00,300.00,3.47,6 +0.00,0.00,300.00,2.11,6 +0.00,0.00,300.00,0.75,6 +0.00,0.00,300.00,5.67,5 +0.00,0.00,300.00,4.31,5 +0.00,0.00,300.00,2.95,5 +0.00,0.00,300.00,1.59,4 +0.00,0.00,300.00,0.23,4 +3224.23,0.00,300.00,5.16,4 +0.00,0.00,300.00,3.80,3 +2570.27,0.00,300.00,2.44,3 +2570.27,0.00,300.00,1.08,3 +0.00,0.00,300.00,6.00,2 +0.00,0.00,300.00,4.64,2 +0.00,0.00,300.00,3.28,2 +0.00,0.00,300.00,4.71,9 +0.00,0.00,300.00,3.35,9 +0.00,0.00,300.00,1.99,9 +0.00,0.00,300.00,0.63,8 +0.00,0.00,300.00,5.56,8 +1915.64,0.00,300.00,4.20,8 +1921.13,0.00,300.00,2.84,7 +1908.93,0.00,300.00,1.48,7 +1966.67,0.00,300.00,0.12,7 +0.00,0.00,300.00,5.04,6 +3240.89,0.00,300.00,3.68,6 +3235.22,0.00,300.00,2.32,6 +0.00,0.00,300.00,0.96,5 +0.00,0.00,300.00,5.88,5 +0.00,0.00,300.00,4.52,5 +0.00,0.00,300.00,3.16,4 +0.00,0.00,300.00,1.80,4 +0.00,0.00,300.00,0.44,4 +1534.36,0.00,300.00,5.37,3 +2729.72,0.00,300.00,4.01,3 +1089.18,0.00,300.00,2.65,3 +0.00,0.00,300.00,1.29,2 +0.00,0.00,300.00,6.22,2 +0.00,0.00,300.00,4.86,2 +1413.57,100.00,300.00,4.71,9 +0.00,100.00,300.00,3.35,9 +0.00,100.00,300.00,1.99,9 +0.00,100.00,300.00,0.63,8 +0.00,100.00,300.00,5.56,8 +0.00,100.00,300.00,4.20,8 +0.00,100.00,300.00,2.84,7 +0.00,100.00,300.00,1.48,7 +0.00,100.00,300.00,0.12,7 +3416.49,100.00,300.00,5.04,6 +3392.78,100.00,300.00,3.68,6 +2793.64,100.00,300.00,2.32,6 +0.00,100.00,300.00,0.96,5 +0.00,100.00,300.00,5.88,5 +0.00,100.00,300.00,4.52,5 +0.00,100.00,300.00,3.16,4 +0.00,100.00,300.00,1.80,4 +2730.24,100.00,300.00,0.44,4 +2700.69,100.00,300.00,5.37,3 +860.48,100.00,300.00,4.01,3 +848.97,100.00,300.00,2.65,3 +0.00,100.00,300.00,1.29,2 +0.00,100.00,300.00,6.22,2 +0.00,100.00,300.00,4.86,2 +0.00,100.00,300.00,0.00,9 +0.00,100.00,300.00,4.92,9 +0.00,100.00,300.00,3.56,9 +3378.18,100.00,300.00,2.20,8 +0.00,100.00,300.00,0.84,8 +2764.78,100.00,300.00,5.77,8 +0.00,100.00,300.00,4.41,7 +0.00,100.00,300.00,3.05,7 +0.00,100.00,300.00,1.69,7 +0.00,100.00,300.00,0.33,6 +2764.78,100.00,300.00,5.25,6 +2737.63,100.00,300.00,3.89,6 +0.00,100.00,300.00,2.53,5 +0.00,100.00,300.00,1.17,5 +0.00,100.00,300.00,6.10,5 +942.10,100.00,300.00,4.74,4 +1157.04,100.00,300.00,3.38,4 +0.00,100.00,300.00,2.02,4 +1438.49,100.00,300.00,0.66,3 +3244.16,100.00,300.00,5.58,3 +3254.30,100.00,300.00,4.22,3 +0.00,100.00,300.00,2.86,2 +0.00,100.00,300.00,1.50,2 +0.00,100.00,300.00,0.14,2 +0.00,100.00,400.00,0.00,9 +0.00,100.00,400.00,4.92,9 +0.00,100.00,400.00,3.56,9 +3234.02,100.00,400.00,2.20,8 +2742.61,100.00,400.00,0.84,8 +2722.34,100.00,400.00,5.77,8 +2734.19,100.00,400.00,4.41,7 +0.00,100.00,400.00,3.05,7 +0.00,100.00,400.00,1.69,7 +1824.40,100.00,400.00,0.33,6 +1843.99,100.00,400.00,5.25,6 +1278.18,100.00,400.00,3.89,6 +0.00,100.00,400.00,2.53,5 +0.00,100.00,400.00,1.17,5 +0.00,100.00,400.00,6.10,5 +1137.11,100.00,400.00,4.74,4 +1065.29,100.00,400.00,3.38,4 +0.00,100.00,400.00,2.02,4 +0.00,100.00,400.00,0.66,3 +3153.26,100.00,400.00,5.58,3 +0.00,100.00,400.00,4.22,3 +0.00,100.00,400.00,2.86,2 +0.00,100.00,400.00,1.50,2 +0.00,100.00,400.00,0.14,2 +0.00,100.00,500.00,0.00,9 +0.00,100.00,500.00,4.92,9 +0.00,100.00,500.00,3.56,9 +3140.21,100.00,500.00,2.20,8 +2704.30,100.00,500.00,0.84,8 +2692.44,100.00,500.00,5.77,8 +2724.23,100.00,500.00,4.41,7 +0.00,100.00,500.00,3.05,7 +0.00,100.00,500.00,1.69,7 +1968.21,100.00,500.00,0.33,6 +1973.54,100.00,500.00,5.25,6 +3068.04,100.00,500.00,3.89,6 +0.00,100.00,500.00,2.53,5 +0.00,100.00,500.00,1.17,5 +0.00,100.00,500.00,6.10,5 +624.91,100.00,500.00,4.74,4 +0.00,100.00,500.00,3.38,4 +0.00,100.00,500.00,2.02,4 +0.00,100.00,500.00,0.66,3 +3133.16,100.00,500.00,5.58,3 +1773.71,100.00,500.00,4.22,3 +0.00,100.00,500.00,2.86,2 +0.00,100.00,500.00,1.50,2 +0.00,100.00,500.00,0.14,2 +0.00,100.00,600.00,0.00,9 +0.00,100.00,600.00,4.92,9 +0.00,100.00,600.00,3.56,9 +2679.21,100.00,600.00,2.20,8 +2661.17,100.00,600.00,0.84,8 +2645.53,100.00,600.00,5.77,8 +2677.32,100.00,600.00,4.41,7 +2781.61,100.00,600.00,3.05,7 +0.00,100.00,600.00,1.69,7 +2106.53,100.00,600.00,0.33,6 +2097.59,100.00,600.00,5.25,6 +1430.07,100.00,600.00,3.89,6 +0.00,100.00,600.00,2.53,5 +0.00,100.00,600.00,1.17,5 +0.00,100.00,600.00,6.10,5 +0.00,100.00,600.00,4.74,4 +1676.29,100.00,600.00,3.38,4 +0.00,100.00,600.00,2.02,4 +3072.16,100.00,600.00,0.66,3 +3084.36,100.00,600.00,5.58,3 +1645.70,100.00,600.00,4.22,3 +0.00,100.00,600.00,2.86,2 +0.00,100.00,600.00,1.50,2 +0.00,100.00,600.00,0.14,2 +1215.81,100.00,700.00,0.00,9 +0.00,100.00,700.00,4.92,9 +0.00,100.00,700.00,3.56,9 +2647.08,100.00,700.00,2.20,8 +2591.58,100.00,700.00,0.84,8 +2597.08,100.00,700.00,5.77,8 +2610.14,100.00,700.00,4.41,7 +2787.80,100.00,700.00,3.05,7 +0.00,100.00,700.00,1.69,7 +0.00,100.00,700.00,0.33,6 +0.00,100.00,700.00,5.25,6 +3437.46,100.00,700.00,3.89,6 +0.00,100.00,700.00,2.53,5 +0.00,100.00,700.00,1.17,5 +0.00,100.00,700.00,6.10,5 +0.00,100.00,700.00,4.74,4 +0.00,100.00,700.00,3.38,4 +0.00,100.00,700.00,2.02,4 +0.00,100.00,700.00,0.66,3 +1539.18,100.00,700.00,5.58,3 +0.00,100.00,700.00,4.22,3 +0.00,100.00,700.00,2.86,2 +0.00,100.00,700.00,1.50,2 +1226.29,100.00,700.00,0.14,2 +2751.55,100.00,700.00,1.57,9 +0.00,100.00,700.00,0.21,9 +0.00,100.00,700.00,5.13,9 +2244.85,100.00,700.00,3.77,8 +0.00,100.00,700.00,2.41,8 +1557.04,100.00,700.00,1.06,8 +1570.79,100.00,700.00,5.98,7 +0.00,100.00,700.00,4.62,7 +0.00,100.00,700.00,3.26,7 +0.00,100.00,700.00,1.90,6 +0.00,100.00,700.00,0.54,6 +0.00,100.00,700.00,5.46,6 +0.00,100.00,700.00,4.10,5 +0.00,100.00,700.00,2.74,5 +0.00,100.00,700.00,1.38,5 +1256.87,100.00,700.00,0.02,4 +1246.56,100.00,700.00,4.95,4 +1270.27,100.00,700.00,3.59,4 +0.00,100.00,700.00,2.23,3 +2867.35,100.00,700.00,0.87,3 +2582.65,100.00,700.00,5.79,3 +0.00,100.00,700.00,4.43,2 +2574.05,100.00,700.00,3.07,2 +0.00,100.00,700.00,1.71,2 +958.25,100.00,700.00,3.14,9 +1855.67,100.00,700.00,1.78,9 +0.00,100.00,700.00,0.42,9 +0.00,100.00,700.00,5.35,8 +1574.57,100.00,700.00,3.99,8 +1580.41,100.00,700.00,2.63,8 +0.00,100.00,700.00,1.27,7 +0.00,100.00,700.00,6.19,7 +1304.64,100.00,700.00,4.83,7 +1285.57,100.00,700.00,3.47,6 +1280.93,100.00,700.00,2.11,6 +0.00,100.00,700.00,0.75,6 +0.00,100.00,700.00,5.67,5 +0.00,100.00,700.00,4.31,5 +2647.08,100.00,700.00,2.95,5 +2618.73,100.00,700.00,1.59,4 +2764.26,100.00,700.00,0.23,4 +2784.36,100.00,700.00,5.16,4 +0.00,100.00,700.00,3.80,3 +2190.89,100.00,700.00,2.44,3 +0.00,100.00,700.00,1.08,3 +0.00,100.00,700.00,6.00,2 +0.00,100.00,700.00,4.64,2 +0.00,100.00,700.00,3.28,2 +1254.64,100.00,700.00,4.71,9 +1223.88,100.00,700.00,3.35,9 +1227.15,100.00,700.00,1.99,9 +1231.27,100.00,700.00,0.63,8 +2923.71,100.00,700.00,5.56,8 +2651.55,100.00,700.00,4.20,8 +2919.24,100.00,700.00,2.84,7 +2656.53,100.00,700.00,1.48,7 +2616.32,100.00,700.00,0.12,7 +2633.33,100.00,700.00,5.04,6 +2804.81,100.00,700.00,3.68,6 +0.00,100.00,700.00,2.32,6 +0.00,100.00,700.00,0.96,5 +0.00,100.00,700.00,5.88,5 +0.00,100.00,700.00,4.52,5 +0.00,100.00,700.00,3.16,4 +951.20,100.00,700.00,1.80,4 +0.00,100.00,700.00,0.44,4 +0.00,100.00,700.00,5.37,3 +0.00,100.00,700.00,4.01,3 +3046.22,100.00,700.00,2.65,3 +0.00,100.00,700.00,1.29,2 +0.00,100.00,700.00,6.22,2 +0.00,100.00,700.00,4.86,2 +2584.19,100.00,700.00,0.00,9 +2580.24,100.00,700.00,4.92,9 +0.00,100.00,700.00,3.56,9 +0.00,100.00,700.00,2.20,8 +2208.08,100.00,700.00,0.84,8 +2211.17,100.00,700.00,5.77,8 +0.00,100.00,700.00,4.41,7 +0.00,100.00,700.00,3.05,7 +1613.57,100.00,700.00,1.69,7 +1675.09,100.00,700.00,0.33,6 +1618.56,100.00,700.00,5.25,6 +0.00,100.00,700.00,3.89,6 +0.00,100.00,700.00,2.53,5 +0.00,100.00,700.00,1.17,5 +0.00,100.00,700.00,6.10,5 +0.00,100.00,700.00,4.74,4 +1598.97,100.00,700.00,3.38,4 +1243.64,100.00,700.00,2.02,4 +1226.80,100.00,700.00,0.66,3 +1231.62,100.00,700.00,5.58,3 +1257.73,100.00,700.00,4.22,3 +0.00,100.00,700.00,2.86,2 +0.00,100.00,700.00,1.50,2 +0.00,100.00,700.00,0.14,2 +0.00,100.00,700.00,1.57,9 +0.00,100.00,700.00,0.21,9 +927.49,100.00,700.00,5.13,9 +1836.08,100.00,700.00,3.77,8 +0.00,100.00,700.00,2.41,8 +0.00,100.00,700.00,1.06,8 +0.00,100.00,700.00,5.98,7 +0.00,100.00,700.00,4.62,7 +0.00,100.00,700.00,3.26,7 +0.00,100.00,700.00,1.90,6 +0.00,100.00,700.00,0.54,6 +1273.88,100.00,700.00,5.46,6 +1279.38,100.00,700.00,4.10,5 +0.00,100.00,700.00,2.74,5 +0.00,100.00,700.00,1.38,5 +0.00,100.00,700.00,0.02,4 +0.00,100.00,700.00,4.95,4 +2582.47,100.00,700.00,3.59,4 +2585.05,100.00,700.00,2.23,3 +2736.60,100.00,700.00,0.87,3 +0.00,100.00,700.00,5.79,3 +0.00,100.00,700.00,4.43,2 +0.00,100.00,700.00,3.07,2 +0.00,100.00,700.00,1.71,2 +0.00,0.00,700.00,1.57,9 +1376.12,0.00,700.00,0.21,9 +1434.36,0.00,700.00,5.13,9 +0.00,0.00,700.00,3.77,8 +0.00,0.00,700.00,2.41,8 +0.00,0.00,700.00,1.06,8 +0.00,0.00,700.00,5.98,7 +0.00,0.00,700.00,4.62,7 +0.00,0.00,700.00,3.26,7 +0.00,0.00,700.00,1.90,6 +0.00,0.00,700.00,0.54,6 +1459.28,0.00,700.00,5.46,6 +0.00,0.00,700.00,4.10,5 +0.00,0.00,700.00,2.74,5 +0.00,0.00,700.00,1.38,5 +0.00,0.00,700.00,0.02,4 +2648.97,0.00,700.00,4.95,4 +2652.23,0.00,700.00,3.59,4 +2663.75,0.00,700.00,2.23,3 +2725.94,0.00,700.00,0.87,3 +0.00,0.00,700.00,5.79,3 +0.00,0.00,700.00,4.43,2 +0.00,0.00,700.00,3.07,2 +0.00,0.00,700.00,1.71,2 +1415.12,-100.00,700.00,1.57,9 +1239.69,-100.00,700.00,0.21,9 +1322.68,-100.00,700.00,5.13,9 +1237.29,-100.00,700.00,3.77,8 +1656.19,-100.00,700.00,2.41,8 +0.00,-100.00,700.00,1.06,8 +0.00,-100.00,700.00,5.98,7 +3214.95,-100.00,700.00,4.62,7 +0.00,-100.00,700.00,3.26,7 +0.00,-100.00,700.00,1.90,6 +1615.29,-100.00,700.00,0.54,6 +1606.87,-100.00,700.00,5.46,6 +1625.94,-100.00,700.00,4.10,5 +0.00,-100.00,700.00,2.74,5 +0.00,-100.00,700.00,1.38,5 +0.00,-100.00,700.00,0.02,4 +2669.93,-100.00,700.00,4.95,4 +2661.51,-100.00,700.00,3.59,4 +2648.45,-100.00,700.00,2.23,3 +2719.93,-100.00,700.00,0.87,3 +0.00,-100.00,700.00,5.79,3 +0.00,-100.00,700.00,4.43,2 +0.00,-100.00,700.00,3.07,2 +0.00,-100.00,700.00,1.71,2 +0.00,-100.00,700.00,3.14,9 +0.00,-100.00,700.00,1.78,9 +0.00,-100.00,700.00,0.42,9 +0.00,-100.00,700.00,5.35,8 +1602.92,-100.00,700.00,3.99,8 +1593.13,-100.00,700.00,2.63,8 +1616.15,-100.00,700.00,1.27,7 +0.00,-100.00,700.00,6.19,7 +0.00,-100.00,700.00,4.83,7 +2700.86,-100.00,700.00,3.47,6 +2678.35,-100.00,700.00,2.11,6 +2684.02,-100.00,700.00,0.75,6 +0.00,-100.00,700.00,5.67,5 +0.00,-100.00,700.00,4.31,5 +0.00,-100.00,700.00,2.95,5 +0.00,-100.00,700.00,1.59,4 +3078.01,-100.00,700.00,0.23,4 +0.00,-100.00,700.00,5.16,4 +1216.67,-100.00,700.00,3.80,3 +676.63,-100.00,700.00,2.44,3 +674.23,-100.00,700.00,1.08,3 +0.00,-100.00,700.00,6.00,2 +0.00,-100.00,700.00,4.64,2 +0.00,-100.00,700.00,3.28,2 +0.00,-100.00,600.00,3.14,9 +0.00,-100.00,600.00,1.78,9 +0.00,-100.00,600.00,0.42,9 +0.00,-100.00,600.00,5.35,8 +0.00,-100.00,600.00,3.99,8 +0.00,-100.00,600.00,2.63,8 +0.00,-100.00,600.00,1.27,7 +0.00,-100.00,600.00,6.19,7 +0.00,-100.00,600.00,4.83,7 +2871.82,-100.00,600.00,3.47,6 +2871.31,-100.00,600.00,2.11,6 +2827.15,-100.00,600.00,0.75,6 +0.00,-100.00,600.00,5.67,5 +0.00,-100.00,600.00,4.31,5 +0.00,-100.00,600.00,2.95,5 +0.00,-100.00,600.00,1.59,4 +3136.08,-100.00,600.00,0.23,4 +1253.95,-100.00,600.00,5.16,4 +1248.11,-100.00,600.00,3.80,3 +903.26,-100.00,600.00,2.44,3 +901.72,-100.00,600.00,1.08,3 +0.00,-100.00,600.00,6.00,2 +0.00,-100.00,600.00,4.64,2 +0.00,-100.00,600.00,3.28,2 +0.00,-100.00,500.00,3.14,9 +0.00,-100.00,500.00,1.78,9 +0.00,-100.00,500.00,0.42,9 +0.00,-100.00,500.00,5.35,8 +0.00,-100.00,500.00,3.99,8 +0.00,-100.00,500.00,2.63,8 +0.00,-100.00,500.00,1.27,7 +0.00,-100.00,500.00,6.19,7 +0.00,-100.00,500.00,4.83,7 +3013.06,-100.00,500.00,3.47,6 +2989.17,-100.00,500.00,2.11,6 +3025.26,-100.00,500.00,0.75,6 +0.00,-100.00,500.00,5.67,5 +0.00,-100.00,500.00,4.31,5 +0.00,-100.00,500.00,2.95,5 +0.00,-100.00,500.00,1.59,4 +0.00,-100.00,500.00,0.23,4 +1235.74,-100.00,500.00,5.16,4 +1205.67,-100.00,500.00,3.80,3 +1021.48,-100.00,500.00,2.44,3 +1029.04,-100.00,500.00,1.08,3 +0.00,-100.00,500.00,6.00,2 +0.00,-100.00,500.00,4.64,2 +0.00,-100.00,500.00,3.28,2 +0.00,-100.00,400.00,3.14,9 +1331.10,-100.00,400.00,1.78,9 +1313.40,-100.00,400.00,0.42,9 +0.00,-100.00,400.00,5.35,8 +0.00,-100.00,400.00,3.99,8 +0.00,-100.00,400.00,2.63,8 +0.00,-100.00,400.00,1.27,7 +0.00,-100.00,400.00,6.19,7 +3464.60,-100.00,400.00,4.83,7 +3450.52,-100.00,400.00,3.47,6 +3142.10,-100.00,400.00,2.11,6 +3157.56,-100.00,400.00,0.75,6 +0.00,-100.00,400.00,5.67,5 +0.00,-100.00,400.00,4.31,5 +0.00,-100.00,400.00,2.95,5 +0.00,-100.00,400.00,1.59,4 +3293.99,-100.00,400.00,0.23,4 +1200.86,-100.00,400.00,5.16,4 +964.26,-100.00,400.00,3.80,3 +973.88,-100.00,400.00,2.44,3 +1121.99,-100.00,400.00,1.08,3 +0.00,-100.00,400.00,6.00,2 +0.00,-100.00,400.00,4.64,2 +0.00,-100.00,400.00,3.28,2 +0.00,-100.00,300.00,3.14,9 +1165.81,-100.00,300.00,1.78,9 +1139.86,-100.00,300.00,0.42,9 +0.00,-100.00,300.00,5.35,8 +0.00,-100.00,300.00,3.99,8 +0.00,-100.00,300.00,2.63,8 +0.00,-100.00,300.00,1.27,7 +0.00,-100.00,300.00,6.19,7 +0.00,-100.00,300.00,4.83,7 +3564.78,-100.00,300.00,3.47,6 +0.00,-100.00,300.00,2.11,6 +3434.02,-100.00,300.00,0.75,6 +0.00,-100.00,300.00,5.67,5 +0.00,-100.00,300.00,4.31,5 +0.00,-100.00,300.00,2.95,5 +0.00,-100.00,300.00,1.59,4 +0.00,-100.00,300.00,0.23,4 +1173.88,-100.00,300.00,5.16,4 +976.29,-100.00,300.00,3.80,3 +995.53,-100.00,300.00,2.44,3 +1069.59,-100.00,300.00,1.08,3 +0.00,-100.00,300.00,6.00,2 +0.00,-100.00,300.00,4.64,2 +0.00,-100.00,300.00,3.28,2 +0.00,-100.00,200.00,3.14,9 +0.00,-100.00,200.00,1.78,9 +987.80,-100.00,200.00,0.42,9 +0.00,-100.00,200.00,5.35,8 +0.00,-100.00,200.00,3.99,8 +0.00,-100.00,200.00,2.63,8 +0.00,-100.00,200.00,1.27,7 +0.00,-100.00,200.00,6.19,7 +0.00,-100.00,200.00,4.83,7 +3462.71,-100.00,200.00,3.47,6 +3458.25,-100.00,200.00,2.11,6 +0.00,-100.00,200.00,0.75,6 +0.00,-100.00,200.00,5.67,5 +0.00,-100.00,200.00,4.31,5 +0.00,-100.00,200.00,2.95,5 +0.00,-100.00,200.00,1.59,4 +1257.39,-100.00,200.00,0.23,4 +1137.11,-100.00,200.00,5.16,4 +1001.20,-100.00,200.00,3.80,3 +1012.54,-100.00,200.00,2.44,3 +0.00,-100.00,200.00,1.08,3 +0.00,-100.00,200.00,6.00,2 +0.00,-100.00,200.00,4.64,2 +0.00,-100.00,200.00,3.28,2 +0.00,-100.00,100.00,3.14,9 +0.00,-100.00,100.00,1.78,9 +943.47,-100.00,100.00,0.42,9 +0.00,-100.00,100.00,5.35,8 +0.00,-100.00,100.00,3.99,8 +0.00,-100.00,100.00,2.63,8 +0.00,-100.00,100.00,1.27,7 +0.00,-100.00,100.00,6.19,7 +0.00,-100.00,100.00,4.83,7 +0.00,-100.00,100.00,3.47,6 +0.00,-100.00,100.00,2.11,6 +3624.57,-100.00,100.00,0.75,6 +0.00,-100.00,100.00,5.67,5 +0.00,-100.00,100.00,4.31,5 +0.00,-100.00,100.00,2.95,5 +0.00,-100.00,100.00,1.59,4 +0.00,-100.00,100.00,0.23,4 +997.08,-100.00,100.00,5.16,4 +935.22,-100.00,100.00,3.80,3 +935.22,-100.00,100.00,2.44,3 +0.00,-100.00,100.00,1.08,3 +0.00,-100.00,100.00,6.00,2 +0.00,-100.00,100.00,4.64,2 +0.00,-100.00,100.00,3.28,2 +0.00,-100.00,100.00,4.71,9 +0.00,-100.00,100.00,3.35,9 +0.00,-100.00,100.00,1.99,9 +3590.89,-100.00,100.00,0.63,8 +0.00,-100.00,100.00,5.56,8 +0.00,-100.00,100.00,4.20,8 +0.00,-100.00,100.00,2.84,7 +0.00,-100.00,100.00,1.48,7 +0.00,-100.00,100.00,0.12,7 +1386.77,-100.00,100.00,5.04,6 +1071.82,-100.00,100.00,3.68,6 +1050.52,-100.00,100.00,2.32,6 +0.00,-100.00,100.00,0.96,5 +0.00,-100.00,100.00,5.88,5 +0.00,-100.00,100.00,4.52,5 +0.00,-100.00,100.00,3.16,4 +0.00,-100.00,100.00,1.80,4 +2157.56,-100.00,100.00,0.44,4 +896.39,-100.00,100.00,5.37,3 +875.09,-100.00,100.00,4.01,3 +904.64,-100.00,100.00,2.65,3 +0.00,-100.00,100.00,1.29,2 +0.00,-100.00,100.00,6.22,2 +0.00,-100.00,100.00,4.86,2 +0.00,0.00,100.00,4.71,9 +0.00,0.00,100.00,3.35,9 +0.00,0.00,100.00,1.99,9 +3453.09,0.00,100.00,0.63,8 +3659.62,0.00,100.00,5.56,8 +0.00,0.00,100.00,4.20,8 +0.00,0.00,100.00,2.84,7 +0.00,0.00,100.00,1.48,7 +3694.67,0.00,100.00,0.12,7 +1209.45,0.00,100.00,5.04,6 +1195.88,0.00,100.00,3.68,6 +1161.00,0.00,100.00,2.32,6 +0.00,0.00,100.00,0.96,5 +0.00,0.00,100.00,5.88,5 +0.00,0.00,100.00,4.52,5 +0.00,0.00,100.00,3.16,4 +0.00,0.00,100.00,1.80,4 +899.66,0.00,100.00,0.44,4 +853.26,0.00,100.00,5.37,3 +859.62,0.00,100.00,4.01,3 +0.00,0.00,100.00,2.65,3 +0.00,0.00,100.00,1.29,2 +0.00,0.00,100.00,6.22,2 +0.00,0.00,100.00,4.86,2 +0.00,100.00,100.00,4.71,9 +3418.90,100.00,100.00,3.35,9 +0.00,100.00,100.00,1.99,9 +3299.48,100.00,100.00,0.63,8 +0.00,100.00,100.00,5.56,8 +0.00,100.00,100.00,4.20,8 +0.00,100.00,100.00,2.84,7 +0.00,100.00,100.00,1.48,7 +0.00,100.00,100.00,0.12,7 +1139.35,100.00,100.00,5.04,6 +1367.87,100.00,100.00,3.68,6 +1376.12,100.00,100.00,2.32,6 +0.00,100.00,100.00,0.96,5 +0.00,100.00,100.00,5.88,5 +0.00,100.00,100.00,4.52,5 +0.00,100.00,100.00,3.16,4 +0.00,100.00,100.00,1.80,4 +0.00,100.00,100.00,0.44,4 +785.57,100.00,100.00,5.37,3 +856.36,100.00,100.00,4.01,3 +0.00,100.00,100.00,2.65,3 +0.00,100.00,100.00,1.29,2 +0.00,100.00,100.00,6.22,2 +0.00,100.00,100.00,4.86,2 +0.00,200.00,100.00,4.71,9 +3252.58,200.00,100.00,3.35,9 +3170.79,200.00,100.00,1.99,9 +3168.56,200.00,100.00,0.63,8 +3475.43,200.00,100.00,5.56,8 +0.00,200.00,100.00,4.20,8 +0.00,200.00,100.00,2.84,7 +0.00,200.00,100.00,1.48,7 +0.00,200.00,100.00,0.12,7 +1802.41,200.00,100.00,5.04,6 +1983.51,200.00,100.00,3.68,6 +1566.15,200.00,100.00,2.32,6 +0.00,200.00,100.00,0.96,5 +0.00,200.00,100.00,5.88,5 +0.00,200.00,100.00,4.52,5 +0.00,200.00,100.00,3.16,4 +0.00,200.00,100.00,1.80,4 +0.00,200.00,100.00,0.44,4 +878.87,200.00,100.00,5.37,3 +901.89,200.00,100.00,4.01,3 +0.00,200.00,100.00,2.65,3 +0.00,200.00,100.00,1.29,2 +0.00,200.00,100.00,6.22,2 +0.00,200.00,100.00,4.86,2 +0.00,300.00,100.00,4.71,9 +3067.35,300.00,100.00,3.35,9 +3022.68,300.00,100.00,1.99,9 +3034.71,300.00,100.00,0.63,8 +3393.99,300.00,100.00,5.56,8 +0.00,300.00,100.00,4.20,8 +0.00,300.00,100.00,2.84,7 +0.00,300.00,100.00,1.48,7 +0.00,300.00,100.00,0.12,7 +0.00,300.00,100.00,5.04,6 +1893.81,300.00,100.00,3.68,6 +1714.43,300.00,100.00,2.32,6 +0.00,300.00,100.00,0.96,5 +0.00,300.00,100.00,5.88,5 +0.00,300.00,100.00,4.52,5 +0.00,300.00,100.00,3.16,4 +957.04,300.00,100.00,1.80,4 +909.79,300.00,100.00,0.44,4 +866.32,300.00,100.00,5.37,3 +0.00,300.00,100.00,4.01,3 +0.00,300.00,100.00,2.65,3 +0.00,300.00,100.00,1.29,2 +0.00,300.00,100.00,6.22,2 +0.00,300.00,100.00,4.86,2 +0.00,400.00,100.00,4.71,9 +0.00,400.00,100.00,3.35,9 +2869.07,400.00,100.00,1.99,9 +2892.27,400.00,100.00,0.63,8 +3301.37,400.00,100.00,5.56,8 +0.00,400.00,100.00,4.20,8 +0.00,400.00,100.00,2.84,7 +0.00,400.00,100.00,1.48,7 +4111.51,400.00,100.00,0.12,7 +4109.97,400.00,100.00,5.04,6 +0.00,400.00,100.00,3.68,6 +1915.64,400.00,100.00,2.32,6 +0.00,400.00,100.00,0.96,5 +0.00,400.00,100.00,5.88,5 +0.00,400.00,100.00,4.52,5 +0.00,400.00,100.00,3.16,4 +961.17,400.00,100.00,1.80,4 +925.77,400.00,100.00,0.44,4 +948.45,400.00,100.00,5.37,3 +0.00,400.00,100.00,4.01,3 +0.00,400.00,100.00,2.65,3 +0.00,400.00,100.00,1.29,2 +0.00,400.00,100.00,6.22,2 +0.00,400.00,100.00,4.86,2 +0.00,500.00,100.00,4.71,9 +2781.96,500.00,100.00,3.35,9 +2731.61,500.00,100.00,1.99,9 +2749.66,500.00,100.00,0.63,8 +3217.01,500.00,100.00,5.56,8 +0.00,500.00,100.00,4.20,8 +0.00,500.00,100.00,2.84,7 +0.00,500.00,100.00,1.48,7 +0.00,500.00,100.00,0.12,7 +0.00,500.00,100.00,5.04,6 +0.00,500.00,100.00,3.68,6 +0.00,500.00,100.00,2.32,6 +0.00,500.00,100.00,0.96,5 +0.00,500.00,100.00,5.88,5 +0.00,500.00,100.00,4.52,5 +0.00,500.00,100.00,3.16,4 +985.05,500.00,100.00,1.80,4 +0.00,500.00,100.00,0.44,4 +0.00,500.00,100.00,5.37,3 +0.00,500.00,100.00,4.01,3 +0.00,500.00,100.00,2.65,3 +0.00,500.00,100.00,1.29,2 +0.00,500.00,100.00,6.22,2 +0.00,500.00,100.00,4.86,2 +0.00,500.00,100.00,0.00,9 +0.00,500.00,100.00,4.92,9 +0.00,500.00,100.00,3.56,9 +0.00,500.00,100.00,2.20,8 +2058.93,500.00,100.00,0.84,8 +0.00,500.00,100.00,5.77,8 +0.00,500.00,100.00,4.41,7 +0.00,500.00,100.00,3.05,7 +0.00,500.00,100.00,1.69,7 +0.00,500.00,100.00,0.33,6 +0.00,500.00,100.00,5.25,6 +0.00,500.00,100.00,3.89,6 +0.00,500.00,100.00,2.53,5 +0.00,500.00,100.00,1.17,5 +0.00,500.00,100.00,6.10,5 +0.00,500.00,100.00,4.74,4 +0.00,500.00,100.00,3.38,4 +0.00,500.00,100.00,2.02,4 +2716.84,500.00,100.00,0.66,3 +2726.63,500.00,100.00,5.58,3 +3204.12,500.00,100.00,4.22,3 +0.00,500.00,100.00,2.86,2 +0.00,500.00,100.00,1.50,2 +0.00,500.00,100.00,0.14,2 +0.00,500.00,200.00,0.00,9 +0.00,500.00,200.00,4.92,9 +0.00,500.00,200.00,3.56,9 +2141.75,500.00,200.00,2.20,8 +1992.78,500.00,200.00,0.84,8 +0.00,500.00,200.00,5.77,8 +0.00,500.00,200.00,4.41,7 +0.00,500.00,200.00,3.05,7 +0.00,500.00,200.00,1.69,7 +1128.18,500.00,200.00,0.33,6 +1160.65,500.00,200.00,5.25,6 +0.00,500.00,200.00,3.89,6 +0.00,500.00,200.00,2.53,5 +0.00,500.00,200.00,1.17,5 +0.00,500.00,200.00,6.10,5 +0.00,500.00,200.00,4.74,4 +0.00,500.00,200.00,3.38,4 +2731.27,500.00,200.00,2.02,4 +2699.31,500.00,200.00,0.66,3 +2704.81,500.00,200.00,5.58,3 +3069.24,500.00,200.00,4.22,3 +0.00,500.00,200.00,2.86,2 +0.00,500.00,200.00,1.50,2 +0.00,500.00,200.00,0.14,2 +0.00,500.00,300.00,0.00,9 +0.00,500.00,300.00,4.92,9 +0.00,500.00,300.00,3.56,9 +0.00,500.00,300.00,2.20,8 +0.00,500.00,300.00,0.84,8 +0.00,500.00,300.00,5.77,8 +0.00,500.00,300.00,4.41,7 +0.00,500.00,300.00,3.05,7 +1328.52,500.00,300.00,1.69,7 +1247.94,500.00,300.00,0.33,6 +0.00,500.00,300.00,5.25,6 +0.00,500.00,300.00,3.89,6 +0.00,500.00,300.00,2.53,5 +0.00,500.00,300.00,1.17,5 +0.00,500.00,300.00,6.10,5 +0.00,500.00,300.00,4.74,4 +0.00,500.00,300.00,3.38,4 +2799.48,500.00,300.00,2.02,4 +2657.73,500.00,300.00,0.66,3 +2645.53,500.00,300.00,5.58,3 +2962.20,500.00,300.00,4.22,3 +0.00,500.00,300.00,2.86,2 +0.00,500.00,300.00,1.50,2 +0.00,500.00,300.00,0.14,2 +0.00,500.00,400.00,0.00,9 +0.00,500.00,400.00,4.92,9 +1118.21,500.00,400.00,3.56,9 +1152.23,500.00,400.00,2.20,8 +0.00,500.00,400.00,0.84,8 +0.00,500.00,400.00,5.77,8 +0.00,500.00,400.00,4.41,7 +0.00,500.00,400.00,3.05,7 +0.00,500.00,400.00,1.69,7 +1487.63,500.00,400.00,0.33,6 +1411.17,500.00,400.00,5.25,6 +1109.45,500.00,400.00,3.89,6 +0.00,500.00,400.00,2.53,5 +1035.40,500.00,400.00,1.17,5 +1080.58,500.00,400.00,6.10,5 +1040.38,500.00,400.00,4.74,4 +0.00,500.00,400.00,3.38,4 +2820.96,500.00,400.00,2.02,4 +2614.09,500.00,400.00,0.66,3 +2867.53,500.00,400.00,5.58,3 +2858.25,500.00,400.00,4.22,3 +0.00,500.00,400.00,2.86,2 +0.00,500.00,400.00,1.50,2 +0.00,500.00,400.00,0.14,2 +0.00,500.00,500.00,0.00,9 +0.00,500.00,500.00,4.92,9 +968.04,500.00,500.00,3.56,9 +1688.14,500.00,500.00,2.20,8 +1867.18,500.00,500.00,0.84,8 +0.00,500.00,500.00,5.77,8 +0.00,500.00,500.00,4.41,7 +0.00,500.00,500.00,3.05,7 +0.00,500.00,500.00,1.69,7 +1524.57,500.00,500.00,0.33,6 +1550.34,500.00,500.00,5.25,6 +1202.23,500.00,500.00,3.89,6 +1197.77,500.00,500.00,2.53,5 +1203.61,500.00,500.00,1.17,5 +0.00,500.00,500.00,6.10,5 +1211.34,500.00,500.00,4.74,4 +0.00,500.00,500.00,3.38,4 +2642.96,500.00,500.00,2.02,4 +2588.49,500.00,500.00,0.66,3 +2598.45,500.00,500.00,5.58,3 +2795.88,500.00,500.00,4.22,3 +0.00,500.00,500.00,2.86,2 +0.00,500.00,500.00,1.50,2 +0.00,500.00,500.00,0.14,2 +0.00,500.00,600.00,0.00,9 +0.00,500.00,600.00,4.92,9 +1435.40,500.00,600.00,3.56,9 +854.81,500.00,600.00,2.20,8 +1697.42,500.00,600.00,0.84,8 +0.00,500.00,600.00,5.77,8 +0.00,500.00,600.00,4.41,7 +0.00,500.00,600.00,3.05,7 +0.00,500.00,600.00,1.69,7 +0.00,500.00,600.00,0.33,6 +1715.46,500.00,600.00,5.25,6 +1427.84,500.00,600.00,3.89,6 +0.00,500.00,600.00,2.53,5 +0.00,500.00,600.00,1.17,5 +0.00,500.00,600.00,6.10,5 +0.00,500.00,600.00,4.74,4 +0.00,500.00,600.00,3.38,4 +0.00,500.00,600.00,2.02,4 +2567.53,500.00,600.00,0.66,3 +2570.96,500.00,600.00,5.58,3 +2710.48,500.00,600.00,4.22,3 +0.00,500.00,600.00,2.86,2 +0.00,500.00,600.00,1.50,2 +0.00,500.00,600.00,0.14,2 +3032.99,500.00,700.00,0.00,9 +0.00,500.00,700.00,4.92,9 +1339.52,500.00,700.00,3.56,9 +1278.69,500.00,700.00,2.20,8 +1646.39,500.00,700.00,0.84,8 +0.00,500.00,700.00,5.77,8 +0.00,500.00,700.00,4.41,7 +0.00,500.00,700.00,3.05,7 +3276.63,500.00,700.00,1.69,7 +1847.94,500.00,700.00,0.33,6 +1626.46,500.00,700.00,5.25,6 +1617.87,500.00,700.00,3.89,6 +1625.26,500.00,700.00,2.53,5 +0.00,500.00,700.00,1.17,5 +0.00,500.00,700.00,6.10,5 +0.00,500.00,700.00,4.74,4 +3036.43,500.00,700.00,3.38,4 +0.00,500.00,700.00,2.02,4 +2555.15,500.00,700.00,0.66,3 +2595.53,500.00,700.00,5.58,3 +2629.04,500.00,700.00,4.22,3 +0.00,500.00,700.00,2.86,2 +0.00,500.00,700.00,1.50,2 +0.00,500.00,700.00,0.14,2 +0.00,500.00,700.00,1.57,9 +3254.98,500.00,700.00,0.21,9 +0.00,500.00,700.00,5.13,9 +0.00,500.00,700.00,3.77,8 +1604.47,500.00,700.00,2.41,8 +1611.51,500.00,700.00,1.06,8 +1614.43,500.00,700.00,5.98,7 +1650.17,500.00,700.00,4.62,7 +0.00,500.00,700.00,3.26,7 +3067.18,500.00,700.00,1.90,6 +2598.45,500.00,700.00,0.54,6 +2600.17,500.00,700.00,5.46,6 +0.00,500.00,700.00,4.10,5 +0.00,500.00,700.00,2.74,5 +0.00,500.00,700.00,1.38,5 +0.00,500.00,700.00,0.02,4 +1888.66,500.00,700.00,4.95,4 +3046.91,500.00,700.00,3.59,4 +3041.75,500.00,700.00,2.23,3 +1300.52,500.00,700.00,0.87,3 +1298.11,500.00,700.00,5.79,3 +0.00,500.00,700.00,4.43,2 +0.00,500.00,700.00,3.07,2 +0.00,500.00,700.00,1.71,2 +0.00,500.00,700.00,3.14,9 +0.00,500.00,700.00,1.78,9 +0.00,500.00,700.00,0.42,9 +2555.50,500.00,700.00,5.35,8 +2551.89,500.00,700.00,3.99,8 +2591.41,500.00,700.00,2.63,8 +2654.30,500.00,700.00,1.27,7 +0.00,500.00,700.00,6.19,7 +0.00,500.00,700.00,4.83,7 +1882.13,500.00,700.00,3.47,6 +3092.44,500.00,700.00,2.11,6 +3097.42,500.00,700.00,0.75,6 +0.00,500.00,700.00,5.67,5 +0.00,500.00,700.00,4.31,5 +0.00,500.00,700.00,2.95,5 +1372.68,500.00,700.00,1.59,4 +0.00,500.00,700.00,0.23,4 +0.00,500.00,700.00,5.16,4 +3278.18,500.00,700.00,3.80,3 +0.00,500.00,700.00,2.44,3 +0.00,500.00,700.00,1.08,3 +0.00,500.00,700.00,6.00,2 +0.00,500.00,700.00,4.64,2 +1589.69,500.00,700.00,3.28,2 +0.00,500.00,700.00,4.71,9 +0.00,500.00,700.00,3.35,9 +0.00,500.00,700.00,1.99,9 +3039.69,500.00,700.00,0.63,8 +3033.51,500.00,700.00,5.56,8 +1381.10,500.00,700.00,4.20,8 +1426.29,500.00,700.00,2.84,7 +1390.21,500.00,700.00,1.48,7 +1355.67,500.00,700.00,0.12,7 +0.00,500.00,700.00,5.04,6 +0.00,500.00,700.00,3.68,6 +3283.51,500.00,700.00,2.32,6 +0.00,500.00,700.00,0.96,5 +0.00,500.00,700.00,5.88,5 +0.00,500.00,700.00,4.52,5 +1604.30,500.00,700.00,3.16,4 +1596.05,500.00,700.00,1.80,4 +1612.37,500.00,700.00,0.44,4 +3049.66,500.00,700.00,5.37,3 +3010.14,500.00,700.00,4.01,3 +2549.14,500.00,700.00,2.65,3 +0.00,500.00,700.00,1.29,2 +0.00,500.00,700.00,6.22,2 +2603.61,500.00,700.00,4.86,2 +1297.08,500.00,700.00,0.00,9 +0.00,500.00,700.00,4.92,9 +0.00,500.00,700.00,3.56,9 +0.00,500.00,700.00,2.20,8 +3261.34,500.00,700.00,0.84,8 +1854.12,500.00,700.00,5.77,8 +0.00,500.00,700.00,4.41,7 +0.00,500.00,700.00,3.05,7 +1622.34,500.00,700.00,1.69,7 +1615.98,500.00,700.00,0.33,6 +1633.33,500.00,700.00,5.25,6 +0.00,500.00,700.00,3.89,6 +0.00,500.00,700.00,2.53,5 +0.00,500.00,700.00,1.17,5 +0.00,500.00,700.00,6.10,5 +2583.16,500.00,700.00,4.74,4 +2594.85,500.00,700.00,3.38,4 +0.00,500.00,700.00,2.02,4 +1859.79,500.00,700.00,0.66,3 +1838.14,500.00,700.00,5.58,3 +1846.74,500.00,700.00,4.22,3 +0.00,500.00,700.00,2.86,2 +0.00,500.00,700.00,1.50,2 +0.00,500.00,700.00,0.14,2 +0.00,500.00,700.00,1.57,9 +1617.53,500.00,700.00,0.21,9 +1598.97,500.00,700.00,5.13,9 +1581.27,500.00,700.00,3.77,8 +0.00,500.00,700.00,2.41,8 +3031.10,500.00,700.00,1.06,8 +0.00,500.00,700.00,5.98,7 +2615.98,500.00,700.00,4.62,7 +2589.35,500.00,700.00,3.26,7 +2588.49,500.00,700.00,1.90,6 +2625.94,500.00,700.00,0.54,6 +0.00,500.00,700.00,5.46,6 +0.00,500.00,700.00,4.10,5 +0.00,500.00,700.00,2.74,5 +0.00,500.00,700.00,1.38,5 +0.00,500.00,700.00,0.02,4 +0.00,500.00,700.00,4.95,4 +1388.66,500.00,700.00,3.59,4 +717.35,500.00,700.00,2.23,3 +0.00,500.00,700.00,0.87,3 +0.00,500.00,700.00,5.79,3 +0.00,500.00,700.00,4.43,2 +0.00,500.00,700.00,3.07,2 +0.00,500.00,700.00,1.71,2 +0.00,500.00,700.00,3.14,9 +2546.74,500.00,700.00,1.78,9 +2580.07,500.00,700.00,0.42,9 +2593.64,500.00,700.00,5.35,8 +0.00,500.00,700.00,3.99,8 +1866.32,500.00,700.00,2.63,8 +1886.25,500.00,700.00,1.27,7 +1872.51,500.00,700.00,6.19,7 +3072.85,500.00,700.00,4.83,7 +1367.53,500.00,700.00,3.47,6 +1307.73,500.00,700.00,2.11,6 +750.34,500.00,700.00,0.75,6 +0.00,500.00,700.00,5.67,5 +0.00,500.00,700.00,4.31,5 +0.00,500.00,700.00,2.95,5 +0.00,500.00,700.00,1.59,4 +0.00,500.00,700.00,0.23,4 +1846.91,500.00,700.00,5.16,4 +1602.92,500.00,700.00,3.80,3 +1583.51,500.00,700.00,2.44,3 +1595.70,500.00,700.00,1.08,3 +0.00,500.00,700.00,6.00,2 +0.00,500.00,700.00,4.64,2 +0.00,500.00,700.00,3.28,2 +3019.93,500.00,700.00,4.71,9 +3024.40,500.00,700.00,3.35,9 +0.00,500.00,700.00,1.99,9 +1288.49,500.00,700.00,0.63,8 +724.23,500.00,700.00,5.56,8 +1308.76,500.00,700.00,4.20,8 +0.00,500.00,700.00,2.84,7 +0.00,500.00,700.00,1.48,7 +0.00,500.00,700.00,0.12,7 +1873.37,500.00,700.00,5.04,6 +1866.49,500.00,700.00,3.68,6 +1643.99,500.00,700.00,2.32,6 +1626.98,500.00,700.00,0.96,5 +0.00,500.00,700.00,5.88,5 +0.00,500.00,700.00,4.52,5 +0.00,500.00,700.00,3.16,4 +0.00,500.00,700.00,1.80,4 +3040.72,500.00,700.00,0.44,4 +2540.72,500.00,700.00,5.37,3 +2543.47,500.00,700.00,4.01,3 +2611.86,500.00,700.00,2.65,3 +0.00,500.00,700.00,1.29,2 +0.00,500.00,700.00,6.22,2 +0.00,500.00,700.00,4.86,2 +0.00,500.00,700.00,0.00,9 +0.00,500.00,700.00,4.92,9 +0.00,500.00,700.00,3.56,9 +0.00,500.00,700.00,2.20,8 +1628.01,500.00,700.00,0.84,8 +1606.70,500.00,700.00,5.77,8 +1643.64,500.00,700.00,4.41,7 +1625.43,500.00,700.00,3.05,7 +0.00,500.00,700.00,1.69,7 +0.00,500.00,700.00,0.33,6 +2628.87,500.00,700.00,5.25,6 +2580.07,500.00,700.00,3.89,6 +0.00,500.00,700.00,2.53,5 +0.00,500.00,700.00,1.17,5 +0.00,500.00,700.00,6.10,5 +0.00,500.00,700.00,4.74,4 +1879.73,500.00,700.00,3.38,4 +1858.25,500.00,700.00,2.02,4 +1846.22,500.00,700.00,0.66,3 +1243.47,500.00,700.00,5.58,3 +1241.07,500.00,700.00,4.22,3 +0.00,500.00,700.00,2.86,2 +0.00,500.00,700.00,1.50,2 +0.00,500.00,700.00,0.14,2 +0.00,500.00,800.00,0.00,9 +0.00,500.00,800.00,4.92,9 +0.00,500.00,800.00,3.56,9 +1743.30,500.00,800.00,2.20,8 +0.00,500.00,800.00,0.84,8 +0.00,500.00,800.00,5.77,8 +0.00,500.00,800.00,4.41,7 +0.00,500.00,800.00,3.05,7 +0.00,500.00,800.00,1.69,7 +3201.03,500.00,800.00,0.33,6 +2779.04,500.00,800.00,5.25,6 +2756.36,500.00,800.00,3.89,6 +0.00,500.00,800.00,2.53,5 +0.00,500.00,800.00,1.17,5 +0.00,500.00,800.00,6.10,5 +0.00,500.00,800.00,4.74,4 +0.00,500.00,800.00,3.38,4 +0.00,500.00,800.00,2.02,4 +1173.20,500.00,800.00,0.66,3 +1131.96,500.00,800.00,5.58,3 +1120.27,500.00,800.00,4.22,3 +1314.09,500.00,800.00,2.86,2 +0.00,500.00,800.00,1.50,2 +0.00,500.00,800.00,0.14,2 +0.00,500.00,900.00,0.00,9 +2913.57,500.00,900.00,4.92,9 +2941.24,500.00,900.00,3.56,9 +0.00,500.00,900.00,2.20,8 +0.00,500.00,900.00,0.84,8 +0.00,500.00,900.00,5.77,8 +0.00,500.00,900.00,4.41,7 +0.00,500.00,900.00,3.05,7 +0.00,500.00,900.00,1.69,7 +0.00,500.00,900.00,0.33,6 +2977.32,500.00,900.00,5.25,6 +2964.60,500.00,900.00,3.89,6 +0.00,500.00,900.00,2.53,5 +0.00,500.00,900.00,1.17,5 +0.00,500.00,900.00,6.10,5 +0.00,500.00,900.00,4.74,4 +0.00,500.00,900.00,3.38,4 +0.00,500.00,900.00,2.02,4 +1118.21,500.00,900.00,0.66,3 +1093.64,500.00,900.00,5.58,3 +945.53,500.00,900.00,4.22,3 +1153.26,500.00,900.00,2.86,2 +1331.96,500.00,900.00,1.50,2 +1279.73,500.00,900.00,0.14,2 +0.00,500.00,1000.00,0.00,9 +2748.63,500.00,1000.00,4.92,9 +2770.96,500.00,1000.00,3.56,9 +0.00,500.00,1000.00,2.20,8 +1520.62,500.00,1000.00,0.84,8 +0.00,500.00,1000.00,5.77,8 +0.00,500.00,1000.00,4.41,7 +0.00,500.00,1000.00,3.05,7 +0.00,500.00,1000.00,1.69,7 +3550.00,500.00,1000.00,0.33,6 +3166.49,500.00,1000.00,5.25,6 +3146.39,500.00,1000.00,3.89,6 +0.00,500.00,1000.00,2.53,5 +0.00,500.00,1000.00,1.17,5 +0.00,500.00,1000.00,6.10,5 +0.00,500.00,1000.00,4.74,4 +0.00,500.00,1000.00,3.38,4 +3069.76,500.00,1000.00,2.02,4 +984.71,500.00,1000.00,0.66,3 +914.26,500.00,1000.00,5.58,3 +938.83,500.00,1000.00,4.22,3 +0.00,500.00,1000.00,2.86,2 +0.00,500.00,1000.00,1.50,2 +0.00,500.00,1000.00,0.14,2 +0.00,500.00,1100.00,0.00,9 +0.00,500.00,1100.00,4.92,9 +2588.66,500.00,1100.00,3.56,9 +1390.21,500.00,1100.00,2.20,8 +0.00,500.00,1100.00,0.84,8 +0.00,500.00,1100.00,5.77,8 +0.00,500.00,1100.00,4.41,7 +0.00,500.00,1100.00,3.05,7 +0.00,500.00,1100.00,1.69,7 +3743.47,500.00,1100.00,0.33,6 +3705.67,500.00,1100.00,5.25,6 +3353.44,500.00,1100.00,3.89,6 +0.00,500.00,1100.00,2.53,5 +0.00,500.00,1100.00,1.17,5 +0.00,500.00,1100.00,6.10,5 +0.00,500.00,1100.00,4.74,4 +0.00,500.00,1100.00,3.38,4 +0.00,500.00,1100.00,2.02,4 +890.89,500.00,1100.00,0.66,3 +734.02,500.00,1100.00,5.58,3 +876.98,500.00,1100.00,4.22,3 +0.00,500.00,1100.00,2.86,2 +0.00,500.00,1100.00,1.50,2 +0.00,500.00,1100.00,0.14,2 +0.00,500.00,1200.00,0.00,9 +2439.35,500.00,1200.00,4.92,9 +2444.85,500.00,1200.00,3.56,9 +1339.18,500.00,1200.00,2.20,8 +1320.10,500.00,1200.00,0.84,8 +0.00,500.00,1200.00,5.77,8 +0.00,500.00,1200.00,4.41,7 +0.00,500.00,1200.00,3.05,7 +0.00,500.00,1200.00,1.69,7 +0.00,500.00,1200.00,0.33,6 +3843.64,500.00,1200.00,5.25,6 +3537.29,500.00,1200.00,3.89,6 +0.00,500.00,1200.00,2.53,5 +0.00,500.00,1200.00,1.17,5 +0.00,500.00,1200.00,6.10,5 +0.00,500.00,1200.00,4.74,4 +0.00,500.00,1200.00,3.38,4 +1026.63,500.00,1200.00,2.02,4 +959.11,500.00,1200.00,0.66,3 +900.69,500.00,1200.00,5.58,3 +966.84,500.00,1200.00,4.22,3 +1035.05,500.00,1200.00,2.86,2 +0.00,500.00,1200.00,1.50,2 +0.00,500.00,1200.00,0.14,2 +0.00,500.00,1300.00,0.00,9 +2297.77,500.00,1300.00,4.92,9 +2296.91,500.00,1300.00,3.56,9 +1859.28,500.00,1300.00,2.20,8 +0.00,500.00,1300.00,0.84,8 +0.00,500.00,1300.00,5.77,8 +0.00,500.00,1300.00,4.41,7 +0.00,500.00,1300.00,3.05,7 +0.00,500.00,1300.00,1.69,7 +4048.63,500.00,1300.00,0.33,6 +4025.60,500.00,1300.00,5.25,6 +0.00,500.00,1300.00,3.89,6 +0.00,500.00,1300.00,2.53,5 +0.00,500.00,1300.00,1.17,5 +0.00,500.00,1300.00,6.10,5 +482.13,500.00,1300.00,4.74,4 +468.04,500.00,1300.00,3.38,4 +1083.68,500.00,1300.00,2.02,4 +585.74,500.00,1300.00,0.66,3 +622.51,500.00,1300.00,5.58,3 +628.69,500.00,1300.00,4.22,3 +0.00,500.00,1300.00,2.86,2 +0.00,500.00,1300.00,1.50,2 +0.00,500.00,1300.00,0.14,2 +0.00,500.00,1300.00,1.57,9 +0.00,500.00,1300.00,0.21,9 +0.00,500.00,1300.00,5.13,9 +3668.38,500.00,1300.00,3.77,8 +3654.47,500.00,1300.00,2.41,8 +0.00,500.00,1300.00,1.06,8 +0.00,500.00,1300.00,5.98,7 +0.00,500.00,1300.00,4.62,7 +0.00,500.00,1300.00,3.26,7 +3174.57,500.00,1300.00,1.90,6 +984.02,500.00,1300.00,0.54,6 +1249.48,500.00,1300.00,5.46,6 +0.00,500.00,1300.00,4.10,5 +0.00,500.00,1300.00,2.74,5 +0.00,500.00,1300.00,1.38,5 +680.24,500.00,1300.00,0.02,4 +0.00,500.00,1300.00,4.95,4 +0.00,500.00,1300.00,3.59,4 +2297.42,500.00,1300.00,2.23,3 +2298.97,500.00,1300.00,0.87,3 +1178.01,500.00,1300.00,5.79,3 +0.00,500.00,1300.00,4.43,2 +0.00,500.00,1300.00,3.07,2 +0.00,500.00,1300.00,1.71,2 +0.00,400.00,1300.00,1.57,9 +0.00,400.00,1300.00,0.21,9 +3860.14,400.00,1300.00,5.13,9 +3860.14,400.00,1300.00,3.77,8 +3612.20,400.00,1300.00,2.41,8 +0.00,400.00,1300.00,1.06,8 +0.00,400.00,1300.00,5.98,7 +0.00,400.00,1300.00,4.62,7 +0.00,400.00,1300.00,3.26,7 +0.00,400.00,1300.00,1.90,6 +0.00,400.00,1300.00,0.54,6 +0.00,400.00,1300.00,5.46,6 +0.00,400.00,1300.00,4.10,5 +0.00,400.00,1300.00,2.74,5 +0.00,400.00,1300.00,1.38,5 +917.53,400.00,1300.00,0.02,4 +0.00,400.00,1300.00,4.95,4 +0.00,400.00,1300.00,3.59,4 +2253.44,400.00,1300.00,2.23,3 +1083.51,400.00,1300.00,0.87,3 +1081.62,400.00,1300.00,5.79,3 +0.00,400.00,1300.00,4.43,2 +0.00,400.00,1300.00,3.07,2 +0.00,400.00,1300.00,1.71,2 +0.00,300.00,1300.00,1.57,9 +0.00,300.00,1300.00,0.21,9 +0.00,300.00,1300.00,5.13,9 +3504.47,300.00,1300.00,3.77,8 +3491.41,300.00,1300.00,2.41,8 +3521.65,300.00,1300.00,1.06,8 +0.00,300.00,1300.00,5.98,7 +0.00,300.00,1300.00,4.62,7 +0.00,300.00,1300.00,3.26,7 +0.00,300.00,1300.00,1.90,6 +1491.07,300.00,1300.00,0.54,6 +1053.61,300.00,1300.00,5.46,6 +0.00,300.00,1300.00,4.10,5 +1116.84,300.00,1300.00,2.74,5 +0.00,300.00,1300.00,1.38,5 +0.00,300.00,1300.00,0.02,4 +0.00,300.00,1300.00,4.95,4 +0.00,300.00,1300.00,3.59,4 +1016.49,300.00,1300.00,2.23,3 +990.21,300.00,1300.00,0.87,3 +945.70,300.00,1300.00,5.79,3 +0.00,300.00,1300.00,4.43,2 +0.00,300.00,1300.00,3.07,2 +0.00,300.00,1300.00,1.71,2 +0.00,200.00,1300.00,1.57,9 +0.00,200.00,1300.00,0.21,9 +0.00,200.00,1300.00,5.13,9 +3431.27,200.00,1300.00,3.77,8 +3415.12,200.00,1300.00,2.41,8 +3638.32,200.00,1300.00,1.06,8 +0.00,200.00,1300.00,5.98,7 +0.00,200.00,1300.00,4.62,7 +0.00,200.00,1300.00,3.26,7 +0.00,200.00,1300.00,1.90,6 +3629.55,200.00,1300.00,0.54,6 +1188.66,200.00,1300.00,5.46,6 +0.00,200.00,1300.00,4.10,5 +0.00,200.00,1300.00,2.74,5 +0.00,200.00,1300.00,1.38,5 +0.00,200.00,1300.00,0.02,4 +0.00,200.00,1300.00,4.95,4 +0.00,200.00,1300.00,3.59,4 +933.85,200.00,1300.00,2.23,3 +901.55,200.00,1300.00,0.87,3 +866.49,200.00,1300.00,5.79,3 +0.00,200.00,1300.00,4.43,2 +0.00,200.00,1300.00,3.07,2 +0.00,200.00,1300.00,1.71,2 +0.00,100.00,1300.00,1.57,9 +0.00,100.00,1300.00,0.21,9 +3432.30,100.00,1300.00,5.13,9 +3318.38,100.00,1300.00,3.77,8 +3296.39,100.00,1300.00,2.41,8 +3591.07,100.00,1300.00,1.06,8 +0.00,100.00,1300.00,5.98,7 +0.00,100.00,1300.00,4.62,7 +0.00,100.00,1300.00,3.26,7 +0.00,100.00,1300.00,1.90,6 +3807.90,100.00,1300.00,0.54,6 +1465.29,100.00,1300.00,5.46,6 +0.00,100.00,1300.00,4.10,5 +0.00,100.00,1300.00,2.74,5 +0.00,100.00,1300.00,1.38,5 +0.00,100.00,1300.00,0.02,4 +0.00,100.00,1300.00,4.95,4 +0.00,100.00,1300.00,3.59,4 +870.10,100.00,1300.00,2.23,3 +770.62,100.00,1300.00,0.87,3 +886.43,100.00,1300.00,5.79,3 +0.00,100.00,1300.00,4.43,2 +0.00,100.00,1300.00,3.07,2 +0.00,100.00,1300.00,1.71,2 +0.00,0.00,1300.00,1.57,9 +0.00,0.00,1300.00,0.21,9 +3240.38,0.00,1300.00,5.13,9 +3217.18,0.00,1300.00,3.77,8 +3213.23,0.00,1300.00,2.41,8 +3543.81,0.00,1300.00,1.06,8 +0.00,0.00,1300.00,5.98,7 +0.00,0.00,1300.00,4.62,7 +0.00,0.00,1300.00,3.26,7 +0.00,0.00,1300.00,1.90,6 +2019.93,0.00,1300.00,0.54,6 +1558.25,0.00,1300.00,5.46,6 +0.00,0.00,1300.00,4.10,5 +0.00,0.00,1300.00,2.74,5 +0.00,0.00,1300.00,1.38,5 +0.00,0.00,1300.00,0.02,4 +0.00,0.00,1300.00,4.95,4 +0.00,0.00,1300.00,3.59,4 +0.00,0.00,1300.00,2.23,3 +736.08,0.00,1300.00,0.87,3 +0.00,0.00,1300.00,5.79,3 +0.00,0.00,1300.00,4.43,2 +0.00,0.00,1300.00,3.07,2 +0.00,0.00,1300.00,1.71,2 +0.00,-100.00,1300.00,1.57,9 +0.00,-100.00,1300.00,0.21,9 +0.00,-100.00,1300.00,5.13,9 +3085.05,-100.00,1300.00,3.77,8 +3094.16,-100.00,1300.00,2.41,8 +3497.77,-100.00,1300.00,1.06,8 +0.00,-100.00,1300.00,5.98,7 +0.00,-100.00,1300.00,4.62,7 +0.00,-100.00,1300.00,3.26,7 +4125.60,-100.00,1300.00,1.90,6 +0.00,-100.00,1300.00,0.54,6 +0.00,-100.00,1300.00,5.46,6 +0.00,-100.00,1300.00,4.10,5 +0.00,-100.00,1300.00,2.74,5 +0.00,-100.00,1300.00,1.38,5 +0.00,-100.00,1300.00,0.02,4 +0.00,-100.00,1300.00,4.95,4 +852.92,-100.00,1300.00,3.59,4 +741.07,-100.00,1300.00,2.23,3 +0.00,-100.00,1300.00,0.87,3 +0.00,-100.00,1300.00,5.79,3 +0.00,-100.00,1300.00,4.43,2 +0.00,-100.00,1300.00,3.07,2 +0.00,-100.00,1300.00,1.71,2 +0.00,-100.00,1300.00,3.14,9 +0.00,-100.00,1300.00,1.78,9 +0.00,-100.00,1300.00,0.42,9 +0.00,-100.00,1300.00,5.35,8 +2111.86,-100.00,1300.00,3.99,8 +1683.51,-100.00,1300.00,2.63,8 +0.00,-100.00,1300.00,1.27,7 +0.00,-100.00,1300.00,6.19,7 +0.00,-100.00,1300.00,4.83,7 +0.00,-100.00,1300.00,3.47,6 +0.00,-100.00,1300.00,2.11,6 +0.00,-100.00,1300.00,0.75,6 +0.00,-100.00,1300.00,5.67,5 +0.00,-100.00,1300.00,4.31,5 +0.00,-100.00,1300.00,2.95,5 +0.00,-100.00,1300.00,1.59,4 +0.00,-100.00,1300.00,0.23,4 +0.00,-100.00,1300.00,5.16,4 +0.00,-100.00,1300.00,3.80,3 +3102.58,-100.00,1300.00,2.44,3 +3073.20,-100.00,1300.00,1.08,3 +3097.42,-100.00,1300.00,6.00,2 +0.00,-100.00,1300.00,4.64,2 +0.00,-100.00,1300.00,3.28,2 +0.00,-100.00,1200.00,3.14,9 +0.00,-100.00,1200.00,1.78,9 +0.00,-100.00,1200.00,0.42,9 +0.00,-100.00,1200.00,5.35,8 +0.00,-100.00,1200.00,3.99,8 +1700.34,-100.00,1200.00,2.63,8 +1756.70,-100.00,1200.00,1.27,7 +0.00,-100.00,1200.00,6.19,7 +0.00,-100.00,1200.00,4.83,7 +0.00,-100.00,1200.00,3.47,6 +0.00,-100.00,1200.00,2.11,6 +0.00,-100.00,1200.00,0.75,6 +0.00,-100.00,1200.00,5.67,5 +0.00,-100.00,1200.00,4.31,5 +0.00,-100.00,1200.00,2.95,5 +0.00,-100.00,1200.00,1.59,4 +0.00,-100.00,1200.00,0.23,4 +0.00,-100.00,1200.00,5.16,4 +3091.07,-100.00,1200.00,3.80,3 +2990.21,-100.00,1200.00,2.44,3 +2964.43,-100.00,1200.00,1.08,3 +2978.69,-100.00,1200.00,6.00,2 +0.00,-100.00,1200.00,4.64,2 +0.00,-100.00,1200.00,3.28,2 +0.00,-100.00,1100.00,3.14,9 +0.00,-100.00,1100.00,1.78,9 +3783.16,-100.00,1100.00,0.42,9 +2018.21,-100.00,1100.00,5.35,8 +2002.23,-100.00,1100.00,3.99,8 +1718.56,-100.00,1100.00,2.63,8 +1709.62,-100.00,1100.00,1.27,7 +0.00,-100.00,1100.00,6.19,7 +0.00,-100.00,1100.00,4.83,7 +0.00,-100.00,1100.00,3.47,6 +0.00,-100.00,1100.00,2.11,6 +0.00,-100.00,1100.00,0.75,6 +0.00,-100.00,1100.00,5.67,5 +0.00,-100.00,1100.00,4.31,5 +0.00,-100.00,1100.00,2.95,5 +0.00,-100.00,1100.00,1.59,4 +0.00,-100.00,1100.00,0.23,4 +0.00,-100.00,1100.00,5.16,4 +3006.70,-100.00,1100.00,3.80,3 +2865.98,-100.00,1100.00,2.44,3 +2846.74,-100.00,1100.00,1.08,3 +0.00,-100.00,1100.00,6.00,2 +0.00,-100.00,1100.00,4.64,2 +0.00,-100.00,1100.00,3.28,2 +0.00,-100.00,1000.00,3.14,9 +0.00,-100.00,1000.00,1.78,9 +0.00,-100.00,1000.00,0.42,9 +1853.78,-100.00,1000.00,5.35,8 +1026.12,-100.00,1000.00,3.99,8 +0.00,-100.00,1000.00,2.63,8 +0.00,-100.00,1000.00,1.27,7 +0.00,-100.00,1000.00,6.19,7 +0.00,-100.00,1000.00,4.83,7 +0.00,-100.00,1000.00,3.47,6 +0.00,-100.00,1000.00,2.11,6 +0.00,-100.00,1000.00,0.75,6 +0.00,-100.00,1000.00,5.67,5 +0.00,-100.00,1000.00,4.31,5 +0.00,-100.00,1000.00,2.95,5 +0.00,-100.00,1000.00,1.59,4 +0.00,-100.00,1000.00,0.23,4 +0.00,-100.00,1000.00,5.16,4 +2958.76,-100.00,1000.00,3.80,3 +2764.60,-100.00,1000.00,2.44,3 +2761.00,-100.00,1000.00,1.08,3 +0.00,-100.00,1000.00,6.00,2 +0.00,-100.00,1000.00,4.64,2 +0.00,-100.00,1000.00,3.28,2 +0.00,-100.00,900.00,3.14,9 +0.00,-100.00,900.00,1.78,9 +0.00,-100.00,900.00,0.42,9 +0.00,-100.00,900.00,5.35,8 +0.00,-100.00,900.00,3.99,8 +0.00,-100.00,900.00,2.63,8 +0.00,-100.00,900.00,1.27,7 +0.00,-100.00,900.00,6.19,7 +0.00,-100.00,900.00,4.83,7 +0.00,-100.00,900.00,3.47,6 +3004.98,-100.00,900.00,2.11,6 +1459.45,-100.00,900.00,0.75,6 +0.00,-100.00,900.00,5.67,5 +0.00,-100.00,900.00,4.31,5 +1187.29,-100.00,900.00,2.95,5 +1169.42,-100.00,900.00,1.59,4 +1179.90,-100.00,900.00,0.23,4 +0.00,-100.00,900.00,5.16,4 +2909.11,-100.00,900.00,3.80,3 +2675.77,-100.00,900.00,2.44,3 +2668.38,-100.00,900.00,1.08,3 +2674.74,-100.00,900.00,6.00,2 +0.00,-100.00,900.00,4.64,2 +0.00,-100.00,900.00,3.28,2 +0.00,-100.00,800.00,3.14,9 +0.00,-100.00,800.00,1.78,9 +0.00,-100.00,800.00,0.42,9 +1727.84,-100.00,800.00,5.35,8 +1916.49,-100.00,800.00,3.99,8 +0.00,-100.00,800.00,2.63,8 +0.00,-100.00,800.00,1.27,7 +0.00,-100.00,800.00,6.19,7 +0.00,-100.00,800.00,4.83,7 +0.00,-100.00,800.00,3.47,6 +0.00,-100.00,800.00,2.11,6 +0.00,-100.00,800.00,0.75,6 +0.00,-100.00,800.00,5.67,5 +0.00,-100.00,800.00,4.31,5 +0.00,-100.00,800.00,2.95,5 +1369.76,-100.00,800.00,1.59,4 +1364.95,-100.00,800.00,0.23,4 +0.00,-100.00,800.00,5.16,4 +2890.89,-100.00,800.00,3.80,3 +2919.24,-100.00,800.00,2.44,3 +2690.89,-100.00,800.00,1.08,3 +0.00,-100.00,800.00,6.00,2 +0.00,-100.00,800.00,4.64,2 +0.00,-100.00,800.00,3.28,2 +0.00,-100.00,700.00,3.14,9 +3149.83,-100.00,700.00,1.78,9 +3160.14,-100.00,700.00,0.42,9 +1652.58,-100.00,700.00,5.35,8 +1540.21,-100.00,700.00,3.99,8 +860.31,-100.00,700.00,2.63,8 +0.00,-100.00,700.00,1.27,7 +0.00,-100.00,700.00,6.19,7 +0.00,-100.00,700.00,4.83,7 +0.00,-100.00,700.00,3.47,6 +0.00,-100.00,700.00,2.11,6 +0.00,-100.00,700.00,0.75,6 +0.00,-100.00,700.00,5.67,5 +0.00,-100.00,700.00,4.31,5 +0.00,-100.00,700.00,2.95,5 +1500.52,-100.00,700.00,1.59,4 +0.00,-100.00,700.00,0.23,4 +2921.99,-100.00,700.00,5.16,4 +2900.69,-100.00,700.00,3.80,3 +2489.86,-100.00,700.00,2.44,3 +2493.64,-100.00,700.00,1.08,3 +2578.52,-100.00,700.00,6.00,2 +0.00,-100.00,700.00,4.64,2 +0.00,-100.00,700.00,3.28,2 +0.00,-100.00,700.00,4.71,9 +0.00,-100.00,700.00,3.35,9 +0.00,-100.00,700.00,1.99,9 +0.00,-100.00,700.00,0.63,8 +0.00,-100.00,700.00,5.56,8 +1505.50,-100.00,700.00,4.20,8 +1516.32,-100.00,700.00,2.84,7 +1509.45,-100.00,700.00,1.48,7 +1509.97,-100.00,700.00,0.12,7 +1555.33,-100.00,700.00,5.04,6 +2961.86,-100.00,700.00,3.68,6 +2937.97,-100.00,700.00,2.32,6 +0.00,-100.00,700.00,0.96,5 +0.00,-100.00,700.00,5.88,5 +0.00,-100.00,700.00,4.52,5 +2617.35,-100.00,700.00,3.16,4 +0.00,-100.00,700.00,1.80,4 +0.00,-100.00,700.00,0.44,4 +1928.87,-100.00,700.00,5.37,3 +3148.45,-100.00,700.00,4.01,3 +0.00,-100.00,700.00,2.65,3 +0.00,-100.00,700.00,1.29,2 +0.00,-100.00,700.00,6.22,2 +0.00,-100.00,700.00,4.86,2 +0.00,0.00,700.00,4.71,9 +0.00,0.00,700.00,3.35,9 +0.00,0.00,700.00,1.99,9 +1736.94,0.00,700.00,0.63,8 +1725.94,0.00,700.00,5.56,8 +0.00,0.00,700.00,4.20,8 +0.00,0.00,700.00,2.84,7 +1589.86,0.00,700.00,1.48,7 +1569.07,0.00,700.00,0.12,7 +1590.03,0.00,700.00,5.04,6 +0.00,0.00,700.00,3.68,6 +2757.39,0.00,700.00,2.32,6 +0.00,0.00,700.00,0.96,5 +0.00,0.00,700.00,5.88,5 +0.00,0.00,700.00,4.52,5 +0.00,0.00,700.00,3.16,4 +0.00,0.00,700.00,1.80,4 +1977.49,0.00,700.00,0.44,4 +1965.98,0.00,700.00,5.37,3 +1956.19,0.00,700.00,4.01,3 +1484.19,0.00,700.00,2.65,3 +0.00,0.00,700.00,1.29,2 +0.00,0.00,700.00,6.22,2 +0.00,0.00,700.00,4.86,2 +0.00,100.00,700.00,4.71,9 +0.00,100.00,700.00,3.35,9 +2986.25,100.00,700.00,1.99,9 +2969.42,100.00,700.00,0.63,8 +0.00,100.00,700.00,5.56,8 +0.00,100.00,700.00,4.20,8 +0.00,100.00,700.00,2.84,7 +0.00,100.00,700.00,1.48,7 +0.00,100.00,700.00,0.12,7 +0.00,100.00,700.00,5.04,6 +3311.34,100.00,700.00,3.68,6 +2858.59,100.00,700.00,2.32,6 +0.00,100.00,700.00,0.96,5 +0.00,100.00,700.00,5.88,5 +0.00,100.00,700.00,4.52,5 +0.00,100.00,700.00,3.16,4 +0.00,100.00,700.00,1.80,4 +2046.22,100.00,700.00,0.44,4 +3067.01,100.00,700.00,5.37,3 +3074.23,100.00,700.00,4.01,3 +1080.24,100.00,700.00,2.65,3 +0.00,100.00,700.00,1.29,2 +0.00,100.00,700.00,6.22,2 +0.00,100.00,700.00,4.86,2 +1170.10,200.00,700.00,4.71,9 +0.00,200.00,700.00,3.35,9 +0.00,200.00,700.00,1.99,9 +2816.49,200.00,700.00,0.63,8 +1554.81,200.00,700.00,5.56,8 +0.00,200.00,700.00,4.20,8 +0.00,200.00,700.00,2.84,7 +0.00,200.00,700.00,1.48,7 +0.00,200.00,700.00,0.12,7 +0.00,200.00,700.00,5.04,6 +3485.74,200.00,700.00,3.68,6 +3489.69,200.00,700.00,2.32,6 +0.00,200.00,700.00,0.96,5 +0.00,200.00,700.00,5.88,5 +0.00,200.00,700.00,4.52,5 +0.00,200.00,700.00,3.16,4 +0.00,200.00,700.00,1.80,4 +0.00,200.00,700.00,0.44,4 +1191.41,200.00,700.00,5.37,3 +1118.38,200.00,700.00,4.01,3 +890.38,200.00,700.00,2.65,3 +0.00,200.00,700.00,1.29,2 +0.00,200.00,700.00,6.22,2 +0.00,200.00,700.00,4.86,2 +0.00,200.00,700.00,0.00,9 +0.00,200.00,700.00,4.92,9 +0.00,200.00,700.00,3.56,9 +3445.02,200.00,700.00,2.20,8 +3057.56,200.00,700.00,0.84,8 +3039.00,200.00,700.00,5.77,8 +3051.72,200.00,700.00,4.41,7 +0.00,200.00,700.00,3.05,7 +0.00,200.00,700.00,1.69,7 +2143.47,200.00,700.00,0.33,6 +0.00,200.00,700.00,5.25,6 +3058.93,200.00,700.00,3.89,6 +0.00,200.00,700.00,2.53,5 +1245.53,200.00,700.00,1.17,5 +0.00,200.00,700.00,6.10,5 +955.33,200.00,700.00,4.74,4 +1147.42,200.00,700.00,3.38,4 +0.00,200.00,700.00,2.02,4 +0.00,200.00,700.00,0.66,3 +2825.94,200.00,700.00,5.58,3 +2810.48,200.00,700.00,4.22,3 +2846.74,200.00,700.00,2.86,2 +0.00,200.00,700.00,1.50,2 +0.00,200.00,700.00,0.14,2 +0.00,200.00,800.00,0.00,9 +0.00,200.00,800.00,4.92,9 +0.00,200.00,800.00,3.56,9 +3358.08,200.00,800.00,2.20,8 +3030.76,200.00,800.00,0.84,8 +3019.93,200.00,800.00,5.77,8 +3035.40,200.00,800.00,4.41,7 +3133.85,200.00,800.00,3.05,7 +0.00,200.00,800.00,1.69,7 +0.00,200.00,800.00,0.33,6 +0.00,200.00,800.00,5.25,6 +3241.58,200.00,800.00,3.89,6 +0.00,200.00,800.00,2.53,5 +0.00,200.00,800.00,1.17,5 +0.00,200.00,800.00,6.10,5 +966.67,200.00,800.00,4.74,4 +0.00,200.00,800.00,3.38,4 +0.00,200.00,800.00,2.02,4 +0.00,200.00,800.00,0.66,3 +2757.22,200.00,800.00,5.58,3 +1454.47,200.00,800.00,4.22,3 +0.00,200.00,800.00,2.86,2 +0.00,200.00,800.00,1.50,2 +0.00,200.00,800.00,0.14,2 +0.00,200.00,900.00,0.00,9 +0.00,200.00,900.00,4.92,9 +0.00,200.00,900.00,3.56,9 +3271.82,200.00,900.00,2.20,8 +2999.66,200.00,900.00,0.84,8 +3001.55,200.00,900.00,5.77,8 +3033.85,200.00,900.00,4.41,7 +3175.94,200.00,900.00,3.05,7 +0.00,200.00,900.00,1.69,7 +0.00,200.00,900.00,0.33,6 +0.00,200.00,900.00,5.25,6 +0.00,200.00,900.00,3.89,6 +0.00,200.00,900.00,2.53,5 +0.00,200.00,900.00,1.17,5 +0.00,200.00,900.00,6.10,5 +1197.94,200.00,900.00,4.74,4 +0.00,200.00,900.00,3.38,4 +0.00,200.00,900.00,2.02,4 +0.00,200.00,900.00,0.66,3 +1313.40,200.00,900.00,5.58,3 +1312.54,200.00,900.00,4.22,3 +0.00,200.00,900.00,2.86,2 +0.00,200.00,900.00,1.50,2 +0.00,200.00,900.00,0.14,2 +0.00,200.00,1000.00,0.00,9 +0.00,200.00,1000.00,4.92,9 +0.00,200.00,1000.00,3.56,9 +3224.40,200.00,1000.00,2.20,8 +2987.97,200.00,1000.00,0.84,8 +2977.15,200.00,1000.00,5.77,8 +3007.39,200.00,1000.00,4.41,7 +3202.23,200.00,1000.00,3.05,7 +0.00,200.00,1000.00,1.69,7 +0.00,200.00,1000.00,0.33,6 +0.00,200.00,1000.00,5.25,6 +0.00,200.00,1000.00,3.89,6 +0.00,200.00,1000.00,2.53,5 +0.00,200.00,1000.00,1.17,5 +0.00,200.00,1000.00,6.10,5 +1457.22,200.00,1000.00,4.74,4 +1467.53,200.00,1000.00,3.38,4 +0.00,200.00,1000.00,2.02,4 +0.00,200.00,1000.00,0.66,3 +1157.90,200.00,1000.00,5.58,3 +1161.68,200.00,1000.00,4.22,3 +0.00,200.00,1000.00,2.86,2 +0.00,200.00,1000.00,1.50,2 +0.00,200.00,1000.00,0.14,2 +0.00,200.00,1100.00,0.00,9 +0.00,200.00,1100.00,4.92,9 +0.00,200.00,1100.00,3.56,9 +3089.86,200.00,1100.00,2.20,8 +2950.69,200.00,1100.00,0.84,8 +2957.22,200.00,1100.00,5.77,8 +2962.37,200.00,1100.00,4.41,7 +3260.31,200.00,1100.00,3.05,7 +0.00,200.00,1100.00,1.69,7 +0.00,200.00,1100.00,0.33,6 +0.00,200.00,1100.00,5.25,6 +3774.74,200.00,1100.00,3.89,6 +0.00,200.00,1100.00,2.53,5 +0.00,200.00,1100.00,1.17,5 +0.00,200.00,1100.00,6.10,5 +0.00,200.00,1100.00,4.74,4 +0.00,200.00,1100.00,3.38,4 +0.00,200.00,1100.00,2.02,4 +2655.84,200.00,1100.00,0.66,3 +1069.24,200.00,1100.00,5.58,3 +1048.45,200.00,1100.00,4.22,3 +0.00,200.00,1100.00,2.86,2 +0.00,200.00,1100.00,1.50,2 +0.00,200.00,1100.00,0.14,2 +0.00,200.00,1200.00,0.00,9 +0.00,200.00,1200.00,4.92,9 +0.00,200.00,1200.00,3.56,9 +2966.67,200.00,1200.00,2.20,8 +2918.90,200.00,1200.00,0.84,8 +2917.87,200.00,1200.00,5.77,8 +2931.27,200.00,1200.00,4.41,7 +0.00,200.00,1200.00,3.05,7 +0.00,200.00,1200.00,1.69,7 +0.00,200.00,1200.00,0.33,6 +3923.88,200.00,1200.00,5.25,6 +3924.91,200.00,1200.00,3.89,6 +0.00,200.00,1200.00,2.53,5 +0.00,200.00,1200.00,1.17,5 +0.00,200.00,1200.00,6.10,5 +0.00,200.00,1200.00,4.74,4 +0.00,200.00,1200.00,3.38,4 +0.00,200.00,1200.00,2.02,4 +0.00,200.00,1200.00,0.66,3 +971.48,200.00,1200.00,5.58,3 +955.15,200.00,1200.00,4.22,3 +0.00,200.00,1200.00,2.86,2 +0.00,200.00,1200.00,1.50,2 +0.00,200.00,1200.00,0.14,2 +0.00,200.00,1300.00,0.00,9 +0.00,200.00,1300.00,4.92,9 +0.00,200.00,1300.00,3.56,9 +0.00,200.00,1300.00,2.20,8 +2876.29,200.00,1300.00,0.84,8 +2873.71,200.00,1300.00,5.77,8 +2902.23,200.00,1300.00,4.41,7 +0.00,200.00,1300.00,3.05,7 +0.00,200.00,1300.00,1.69,7 +0.00,200.00,1300.00,0.33,6 +0.00,200.00,1300.00,5.25,6 +4124.23,200.00,1300.00,3.89,6 +0.00,200.00,1300.00,2.53,5 +0.00,200.00,1300.00,1.17,5 +0.00,200.00,1300.00,6.10,5 +0.00,200.00,1300.00,4.74,4 +0.00,200.00,1300.00,3.38,4 +0.00,200.00,1300.00,2.02,4 +950.17,200.00,1300.00,0.66,3 +884.19,200.00,1300.00,5.58,3 +892.27,200.00,1300.00,4.22,3 +0.00,200.00,1300.00,2.86,2 +0.00,200.00,1300.00,1.50,2 +0.00,200.00,1300.00,0.14,2 +0.00,200.00,1300.00,1.57,9 +0.00,200.00,1300.00,0.21,9 +0.00,200.00,1300.00,5.13,9 +0.00,200.00,1300.00,3.77,8 +0.00,200.00,1300.00,2.41,8 +2080.76,200.00,1300.00,1.06,8 +0.00,200.00,1300.00,5.98,7 +0.00,200.00,1300.00,4.62,7 +0.00,200.00,1300.00,3.26,7 +0.00,200.00,1300.00,1.90,6 +0.00,200.00,1300.00,0.54,6 +0.00,200.00,1300.00,5.46,6 +0.00,200.00,1300.00,4.10,5 +970.96,200.00,1300.00,2.74,5 +0.00,200.00,1300.00,1.38,5 +0.00,200.00,1300.00,0.02,4 +0.00,200.00,1300.00,4.95,4 +0.00,200.00,1300.00,3.59,4 +0.00,200.00,1300.00,2.23,3 +0.00,200.00,1300.00,0.87,3 +2897.08,200.00,1300.00,5.79,3 +0.00,200.00,1300.00,4.43,2 +2944.16,200.00,1300.00,3.07,2 +0.00,200.00,1300.00,1.71,2 +3122.68,100.00,1300.00,1.57,9 +0.00,100.00,1300.00,0.21,9 +0.00,100.00,1300.00,5.13,9 +0.00,100.00,1300.00,3.77,8 +0.00,100.00,1300.00,2.41,8 +0.00,100.00,1300.00,1.06,8 +0.00,100.00,1300.00,5.98,7 +0.00,100.00,1300.00,4.62,7 +0.00,100.00,1300.00,3.26,7 +0.00,100.00,1300.00,1.90,6 +0.00,100.00,1300.00,0.54,6 +0.00,100.00,1300.00,5.46,6 +1139.52,100.00,1300.00,4.10,5 +0.00,100.00,1300.00,2.74,5 +0.00,100.00,1300.00,1.38,5 +0.00,100.00,1300.00,0.02,4 +0.00,100.00,1300.00,4.95,4 +0.00,100.00,1300.00,3.59,4 +0.00,100.00,1300.00,2.23,3 +1846.05,100.00,1300.00,0.87,3 +2747.59,100.00,1300.00,5.79,3 +2834.36,100.00,1300.00,4.43,2 +2722.16,100.00,1300.00,3.07,2 +2750.52,100.00,1300.00,1.71,2 +0.00,100.00,1300.00,3.14,9 +0.00,100.00,1300.00,1.78,9 +0.00,100.00,1300.00,0.42,9 +0.00,100.00,1300.00,5.35,8 +0.00,100.00,1300.00,3.99,8 +1124.05,100.00,1300.00,2.63,8 +0.00,100.00,1300.00,1.27,7 +0.00,100.00,1300.00,6.19,7 +0.00,100.00,1300.00,4.83,7 +0.00,100.00,1300.00,3.47,6 +0.00,100.00,1300.00,2.11,6 +0.00,100.00,1300.00,0.75,6 +0.00,100.00,1300.00,5.67,5 +0.00,100.00,1300.00,4.31,5 +0.00,100.00,1300.00,2.95,5 +2758.42,100.00,1300.00,1.59,4 +2750.69,100.00,1300.00,0.23,4 +3141.75,100.00,1300.00,5.16,4 +3141.58,100.00,1300.00,3.80,3 +0.00,100.00,1300.00,2.44,3 +0.00,100.00,1300.00,1.08,3 +0.00,100.00,1300.00,6.00,2 +0.00,100.00,1300.00,4.64,2 +0.00,100.00,1300.00,3.28,2 +0.00,100.00,1200.00,3.14,9 +0.00,100.00,1200.00,1.78,9 +0.00,100.00,1200.00,0.42,9 +0.00,100.00,1200.00,5.35,8 +1075.26,100.00,1200.00,3.99,8 +1076.63,100.00,1200.00,2.63,8 +0.00,100.00,1200.00,1.27,7 +0.00,100.00,1200.00,6.19,7 +0.00,100.00,1200.00,4.83,7 +0.00,100.00,1200.00,3.47,6 +0.00,100.00,1200.00,2.11,6 +0.00,100.00,1200.00,0.75,6 +0.00,100.00,1200.00,5.67,5 +0.00,100.00,1200.00,4.31,5 +0.00,100.00,1200.00,2.95,5 +2872.34,100.00,1200.00,1.59,4 +2877.49,100.00,1200.00,0.23,4 +3197.25,100.00,1200.00,5.16,4 +0.00,100.00,1200.00,3.80,3 +0.00,100.00,1200.00,2.44,3 +3840.89,100.00,1200.00,1.08,3 +0.00,100.00,1200.00,6.00,2 +0.00,100.00,1200.00,4.64,2 +0.00,100.00,1200.00,3.28,2 +0.00,100.00,1100.00,3.14,9 +0.00,100.00,1100.00,1.78,9 +0.00,100.00,1100.00,0.42,9 +2640.21,100.00,1100.00,5.35,8 +1086.94,100.00,1100.00,3.99,8 +1087.11,100.00,1100.00,2.63,8 +0.00,100.00,1100.00,1.27,7 +0.00,100.00,1100.00,6.19,7 +0.00,100.00,1100.00,4.83,7 +0.00,100.00,1100.00,3.47,6 +0.00,100.00,1100.00,2.11,6 +0.00,100.00,1100.00,0.75,6 +0.00,100.00,1100.00,5.67,5 +0.00,100.00,1100.00,4.31,5 +0.00,100.00,1100.00,2.95,5 +2994.85,100.00,1100.00,1.59,4 +3260.48,100.00,1100.00,0.23,4 +0.00,100.00,1100.00,5.16,4 +0.00,100.00,1100.00,3.80,3 +0.00,100.00,1100.00,2.44,3 +0.00,100.00,1100.00,1.08,3 +0.00,100.00,1100.00,6.00,2 +0.00,100.00,1100.00,4.64,2 +0.00,100.00,1100.00,3.28,2 +0.00,100.00,1000.00,3.14,9 +1390.21,100.00,1000.00,1.78,9 +0.00,100.00,1000.00,0.42,9 +0.00,100.00,1000.00,5.35,8 +0.00,100.00,1000.00,3.99,8 +1120.10,100.00,1000.00,2.63,8 +0.00,100.00,1000.00,1.27,7 +0.00,100.00,1000.00,6.19,7 +0.00,100.00,1000.00,4.83,7 +0.00,100.00,1000.00,3.47,6 +0.00,100.00,1000.00,2.11,6 +0.00,100.00,1000.00,0.75,6 +0.00,100.00,1000.00,5.67,5 +0.00,100.00,1000.00,4.31,5 +0.00,100.00,1000.00,2.95,5 +3137.29,100.00,1000.00,1.59,4 +3338.32,100.00,1000.00,0.23,4 +0.00,100.00,1000.00,5.16,4 +0.00,100.00,1000.00,3.80,3 +0.00,100.00,1000.00,2.44,3 +3602.75,100.00,1000.00,1.08,3 +0.00,100.00,1000.00,6.00,2 +0.00,100.00,1000.00,4.64,2 +0.00,100.00,1000.00,3.28,2 +1145.36,100.00,900.00,3.14,9 +0.00,100.00,900.00,1.78,9 +0.00,100.00,900.00,0.42,9 +0.00,100.00,900.00,5.35,8 +2444.50,100.00,900.00,3.99,8 +1167.70,100.00,900.00,2.63,8 +0.00,100.00,900.00,1.27,7 +0.00,100.00,900.00,6.19,7 +0.00,100.00,900.00,4.83,7 +0.00,100.00,900.00,3.47,6 +0.00,100.00,900.00,2.11,6 +0.00,100.00,900.00,0.75,6 +0.00,100.00,900.00,5.67,5 +0.00,100.00,900.00,4.31,5 +0.00,100.00,900.00,2.95,5 +3274.40,100.00,900.00,1.59,4 +3267.87,100.00,900.00,0.23,4 +0.00,100.00,900.00,5.16,4 +0.00,100.00,900.00,3.80,3 +3493.64,100.00,900.00,2.44,3 +1129.04,100.00,900.00,1.08,3 +3469.24,100.00,900.00,6.00,2 +3474.40,100.00,900.00,4.64,2 +0.00,100.00,900.00,3.28,2 +1115.81,100.00,900.00,4.71,9 +0.00,100.00,900.00,3.35,9 +0.00,100.00,900.00,1.99,9 +0.00,100.00,900.00,0.63,8 +0.00,100.00,900.00,5.56,8 +3500.17,100.00,900.00,4.20,8 +0.00,100.00,900.00,2.84,7 +3493.30,100.00,900.00,1.48,7 +3509.79,100.00,900.00,0.12,7 +3260.82,100.00,900.00,5.04,6 +3433.85,100.00,900.00,3.68,6 +0.00,100.00,900.00,2.32,6 +0.00,100.00,900.00,0.96,5 +0.00,100.00,900.00,5.88,5 +0.00,100.00,900.00,4.52,5 +3500.17,100.00,900.00,3.16,4 +1082.65,100.00,900.00,1.80,4 +1141.92,100.00,900.00,0.44,4 +1159.28,100.00,900.00,5.37,3 +0.00,100.00,900.00,4.01,3 +0.00,100.00,900.00,2.65,3 +0.00,100.00,900.00,1.29,2 +0.00,100.00,900.00,6.22,2 +0.00,100.00,900.00,4.86,2 +3466.15,100.00,900.00,0.00,9 +3238.49,100.00,900.00,4.92,9 +3252.58,100.00,900.00,3.56,9 +3403.26,100.00,900.00,2.20,8 +0.00,100.00,900.00,0.84,8 +0.00,100.00,900.00,5.77,8 +0.00,100.00,900.00,4.41,7 +3508.42,100.00,900.00,3.05,7 +3524.57,100.00,900.00,1.69,7 +3518.38,100.00,900.00,0.33,6 +1166.15,100.00,900.00,5.25,6 +1200.34,100.00,900.00,3.89,6 +0.00,100.00,900.00,2.53,5 +0.00,100.00,900.00,1.17,5 +0.00,100.00,900.00,6.10,5 +0.00,100.00,900.00,4.74,4 +1112.54,100.00,900.00,3.38,4 +1053.26,100.00,900.00,2.02,4 +1065.64,100.00,900.00,0.66,3 +0.00,100.00,900.00,5.58,3 +0.00,100.00,900.00,4.22,3 +0.00,100.00,900.00,2.86,2 +0.00,100.00,900.00,1.50,2 +0.00,100.00,900.00,0.14,2 +0.00,100.00,900.00,1.57,9 +3457.73,100.00,900.00,0.21,9 +1152.58,100.00,900.00,5.13,9 +1165.81,100.00,900.00,3.77,8 +1152.75,100.00,900.00,2.41,8 +0.00,100.00,900.00,1.06,8 +0.00,100.00,900.00,5.98,7 +0.00,100.00,900.00,4.62,7 +0.00,100.00,900.00,3.26,7 +1136.60,100.00,900.00,1.90,6 +1179.38,100.00,900.00,0.54,6 +1157.39,100.00,900.00,5.46,6 +0.00,100.00,900.00,4.10,5 +0.00,100.00,900.00,2.74,5 +0.00,100.00,900.00,1.38,5 +0.00,100.00,900.00,0.02,4 +0.00,100.00,900.00,4.95,4 +3448.63,100.00,900.00,3.59,4 +3219.59,100.00,900.00,2.23,3 +3218.90,100.00,900.00,0.87,3 +3399.66,100.00,900.00,5.79,3 +0.00,100.00,900.00,4.43,2 +0.00,100.00,900.00,3.07,2 +0.00,100.00,900.00,1.71,2 +0.00,100.00,900.00,3.14,9 +2463.75,100.00,900.00,1.78,9 +0.00,100.00,900.00,0.42,9 +1157.39,100.00,900.00,5.35,8 +0.00,100.00,900.00,3.99,8 +0.00,100.00,900.00,2.63,8 +0.00,100.00,900.00,1.27,7 +0.00,100.00,900.00,6.19,7 +0.00,100.00,900.00,4.83,7 +0.00,100.00,900.00,3.47,6 +3485.91,100.00,900.00,2.11,6 +3251.72,100.00,900.00,0.75,6 +0.00,100.00,900.00,5.67,5 +0.00,100.00,900.00,4.31,5 +0.00,100.00,900.00,2.95,5 +0.00,100.00,900.00,1.59,4 +0.00,100.00,900.00,0.23,4 +3474.40,100.00,900.00,5.16,4 +3459.97,100.00,900.00,3.80,3 +1101.55,100.00,900.00,2.44,3 +1133.16,100.00,900.00,1.08,3 +1435.91,100.00,900.00,6.00,2 +1415.98,100.00,900.00,4.64,2 +0.00,100.00,900.00,3.28,2 +0.00,100.00,900.00,4.71,9 +0.00,100.00,900.00,3.35,9 +0.00,100.00,900.00,1.99,9 +3441.58,100.00,900.00,0.63,8 +3242.44,100.00,900.00,5.56,8 +3262.54,100.00,900.00,4.20,8 +3243.99,100.00,900.00,2.84,7 +0.00,100.00,900.00,1.48,7 +0.00,100.00,900.00,0.12,7 +0.00,100.00,900.00,5.04,6 +3497.25,100.00,900.00,3.68,6 +1087.11,100.00,900.00,2.32,6 +0.00,100.00,900.00,0.96,5 +0.00,100.00,900.00,5.88,5 +0.00,100.00,900.00,4.52,5 +1375.43,100.00,900.00,3.16,4 +0.00,100.00,900.00,1.80,4 +0.00,100.00,900.00,0.44,4 +2488.66,100.00,900.00,5.37,3 +1097.59,100.00,900.00,4.01,3 +1051.20,100.00,900.00,2.65,3 +0.00,100.00,900.00,1.29,2 +0.00,100.00,900.00,6.22,2 +0.00,100.00,900.00,4.86,2 +0.00,200.00,900.00,4.71,9 +0.00,200.00,900.00,3.35,9 +0.00,200.00,900.00,1.99,9 +3338.83,200.00,900.00,0.63,8 +3188.49,200.00,900.00,5.56,8 +3392.78,200.00,900.00,4.20,8 +3427.66,200.00,900.00,2.84,7 +0.00,200.00,900.00,1.48,7 +0.00,200.00,900.00,0.12,7 +0.00,200.00,900.00,5.04,6 +0.00,200.00,900.00,3.68,6 +0.00,200.00,900.00,2.32,6 +0.00,200.00,900.00,0.96,5 +0.00,200.00,900.00,5.88,5 +0.00,200.00,900.00,4.52,5 +1415.81,200.00,900.00,3.16,4 +0.00,200.00,900.00,1.80,4 +0.00,200.00,900.00,0.44,4 +0.00,200.00,900.00,5.37,3 +946.56,200.00,900.00,4.01,3 +949.14,200.00,900.00,2.65,3 +0.00,200.00,900.00,1.29,2 +0.00,200.00,900.00,6.22,2 +0.00,200.00,900.00,4.86,2 +0.00,300.00,900.00,4.71,9 +0.00,300.00,900.00,3.35,9 +0.00,300.00,900.00,1.99,9 +3136.94,300.00,900.00,0.63,8 +3106.70,300.00,900.00,5.56,8 +3154.98,300.00,900.00,4.20,8 +3415.29,300.00,900.00,2.84,7 +0.00,300.00,900.00,1.48,7 +0.00,300.00,900.00,0.12,7 +0.00,300.00,900.00,5.04,6 +3829.72,300.00,900.00,3.68,6 +0.00,300.00,900.00,2.32,6 +0.00,300.00,900.00,0.96,5 +0.00,300.00,900.00,5.88,5 +0.00,300.00,900.00,4.52,5 +0.00,300.00,900.00,3.16,4 +0.00,300.00,900.00,1.80,4 +0.00,300.00,900.00,0.44,4 +899.14,300.00,900.00,5.37,3 +906.87,300.00,900.00,4.01,3 +902.41,300.00,900.00,2.65,3 +0.00,300.00,900.00,1.29,2 +0.00,300.00,900.00,6.22,2 +0.00,300.00,900.00,4.86,2 +0.00,400.00,900.00,4.71,9 +0.00,400.00,900.00,3.35,9 +3116.84,400.00,900.00,1.99,9 +3046.91,400.00,900.00,0.63,8 +3019.76,400.00,900.00,5.56,8 +3056.87,400.00,900.00,4.20,8 +0.00,400.00,900.00,2.84,7 +0.00,400.00,900.00,1.48,7 +0.00,400.00,900.00,0.12,7 +0.00,400.00,900.00,5.04,6 +4031.44,400.00,900.00,3.68,6 +0.00,400.00,900.00,2.32,6 +0.00,400.00,900.00,0.96,5 +0.00,400.00,900.00,5.88,5 +0.00,400.00,900.00,4.52,5 +0.00,400.00,900.00,3.16,4 +0.00,400.00,900.00,1.80,4 +0.00,400.00,900.00,0.44,4 +891.75,400.00,900.00,5.37,3 +869.42,400.00,900.00,4.01,3 +892.61,400.00,900.00,2.65,3 +0.00,400.00,900.00,1.29,2 +0.00,400.00,900.00,6.22,2 +0.00,400.00,900.00,4.86,2 +0.00,500.00,900.00,4.71,9 +0.00,500.00,900.00,3.35,9 +0.00,500.00,900.00,1.99,9 +2947.08,500.00,900.00,0.63,8 +2924.74,500.00,900.00,5.56,8 +3408.59,500.00,900.00,4.20,8 +0.00,500.00,900.00,2.84,7 +0.00,500.00,900.00,1.48,7 +0.00,500.00,900.00,0.12,7 +0.00,500.00,900.00,5.04,6 +0.00,500.00,900.00,3.68,6 +0.00,500.00,900.00,2.32,6 +0.00,500.00,900.00,0.96,5 +0.00,500.00,900.00,5.88,5 +0.00,500.00,900.00,4.52,5 +0.00,500.00,900.00,3.16,4 +0.00,500.00,900.00,1.80,4 +0.00,500.00,900.00,0.44,4 +865.98,500.00,900.00,5.37,3 +854.30,500.00,900.00,4.01,3 +0.00,500.00,900.00,2.65,3 +0.00,500.00,900.00,1.29,2 +0.00,500.00,900.00,6.22,2 +0.00,500.00,900.00,4.86,2 +0.00,600.00,900.00,4.71,9 +0.00,600.00,900.00,3.35,9 +2880.93,600.00,900.00,1.99,9 +2845.88,600.00,900.00,0.63,8 +2827.32,600.00,900.00,5.56,8 +3394.33,600.00,900.00,4.20,8 +0.00,600.00,900.00,2.84,7 +0.00,600.00,900.00,1.48,7 +0.00,600.00,900.00,0.12,7 +0.00,600.00,900.00,5.04,6 +0.00,600.00,900.00,3.68,6 +0.00,600.00,900.00,2.32,6 +0.00,600.00,900.00,0.96,5 +0.00,600.00,900.00,5.88,5 +0.00,600.00,900.00,4.52,5 +0.00,600.00,900.00,3.16,4 +0.00,600.00,900.00,1.80,4 +0.00,600.00,900.00,0.44,4 +0.00,600.00,900.00,5.37,3 +0.00,600.00,900.00,4.01,3 +0.00,600.00,900.00,2.65,3 +0.00,600.00,900.00,1.29,2 +0.00,600.00,900.00,6.22,2 +0.00,600.00,900.00,4.86,2 +0.00,700.00,900.00,4.71,9 +0.00,700.00,900.00,3.35,9 +2765.64,700.00,900.00,1.99,9 +2743.81,700.00,900.00,0.63,8 +2764.43,700.00,900.00,5.56,8 +3397.77,700.00,900.00,4.20,8 +0.00,700.00,900.00,2.84,7 +0.00,700.00,900.00,1.48,7 +0.00,700.00,900.00,0.12,7 +0.00,700.00,900.00,5.04,6 +0.00,700.00,900.00,3.68,6 +0.00,700.00,900.00,2.32,6 +0.00,700.00,900.00,0.96,5 +0.00,700.00,900.00,5.88,5 +0.00,700.00,900.00,4.52,5 +0.00,700.00,900.00,3.16,4 +0.00,700.00,900.00,1.80,4 +926.29,700.00,900.00,0.44,4 +0.00,700.00,900.00,5.37,3 +0.00,700.00,900.00,4.01,3 +0.00,700.00,900.00,2.65,3 +0.00,700.00,900.00,1.29,2 +0.00,700.00,900.00,6.22,2 +0.00,700.00,900.00,4.86,2 +0.00,700.00,900.00,0.00,9 +0.00,700.00,900.00,4.92,9 +0.00,700.00,900.00,3.56,9 +0.00,700.00,900.00,2.20,8 +0.00,700.00,900.00,0.84,8 +0.00,700.00,900.00,5.77,8 +0.00,700.00,900.00,4.41,7 +0.00,700.00,900.00,3.05,7 +0.00,700.00,900.00,1.69,7 +0.00,700.00,900.00,0.33,6 +0.00,700.00,900.00,5.25,6 +0.00,700.00,900.00,3.89,6 +0.00,700.00,900.00,2.53,5 +0.00,700.00,900.00,1.17,5 +0.00,700.00,900.00,6.10,5 +0.00,700.00,900.00,4.74,4 +0.00,700.00,900.00,3.38,4 +0.00,700.00,900.00,2.02,4 +0.00,700.00,900.00,0.66,3 +2144.67,700.00,900.00,5.58,3 +2733.16,700.00,900.00,4.22,3 +0.00,700.00,900.00,2.86,2 +2759.79,700.00,900.00,1.50,2 +0.00,700.00,900.00,0.14,2 +0.00,700.00,1000.00,0.00,9 +0.00,700.00,1000.00,4.92,9 +0.00,700.00,1000.00,3.56,9 +0.00,700.00,1000.00,2.20,8 +2180.41,700.00,1000.00,0.84,8 +2219.07,700.00,1000.00,5.77,8 +0.00,700.00,1000.00,4.41,7 +0.00,700.00,1000.00,3.05,7 +0.00,700.00,1000.00,1.69,7 +0.00,700.00,1000.00,0.33,6 +0.00,700.00,1000.00,5.25,6 +0.00,700.00,1000.00,3.89,6 +0.00,700.00,1000.00,2.53,5 +0.00,700.00,1000.00,1.17,5 +0.00,700.00,1000.00,6.10,5 +0.00,700.00,1000.00,4.74,4 +0.00,700.00,1000.00,3.38,4 +0.00,700.00,1000.00,2.02,4 +0.00,700.00,1000.00,0.66,3 +2634.71,700.00,1000.00,5.58,3 +2624.74,700.00,1000.00,4.22,3 +2629.38,700.00,1000.00,2.86,2 +0.00,700.00,1000.00,1.50,2 +0.00,700.00,1000.00,0.14,2 +0.00,700.00,1100.00,0.00,9 +0.00,700.00,1100.00,4.92,9 +4160.82,700.00,1100.00,3.56,9 +4151.72,700.00,1100.00,2.20,8 +0.00,700.00,1100.00,0.84,8 +0.00,700.00,1100.00,5.77,8 +0.00,700.00,1100.00,4.41,7 +0.00,700.00,1100.00,3.05,7 +0.00,700.00,1100.00,1.69,7 +0.00,700.00,1100.00,0.33,6 +0.00,700.00,1100.00,5.25,6 +0.00,700.00,1100.00,3.89,6 +0.00,700.00,1100.00,2.53,5 +0.00,700.00,1100.00,1.17,5 +517.53,700.00,1100.00,6.10,5 +501.72,700.00,1100.00,4.74,4 +509.11,700.00,1100.00,3.38,4 +0.00,700.00,1100.00,2.02,4 +1653.26,700.00,1100.00,0.66,3 +2542.44,700.00,1100.00,5.58,3 +2521.13,700.00,1100.00,4.22,3 +2580.41,700.00,1100.00,2.86,2 +0.00,700.00,1100.00,1.50,2 +0.00,700.00,1100.00,0.14,2 +0.00,700.00,1200.00,0.00,9 +0.00,700.00,1200.00,4.92,9 +4031.10,700.00,1200.00,3.56,9 +4006.19,700.00,1200.00,2.20,8 +1636.43,700.00,1200.00,0.84,8 +0.00,700.00,1200.00,5.77,8 +0.00,700.00,1200.00,4.41,7 +0.00,700.00,1200.00,3.05,7 +0.00,700.00,1200.00,1.69,7 +0.00,700.00,1200.00,0.33,6 +0.00,700.00,1200.00,5.25,6 +0.00,700.00,1200.00,3.89,6 +0.00,700.00,1200.00,2.53,5 +0.00,700.00,1200.00,1.17,5 +0.00,700.00,1200.00,6.10,5 +637.97,700.00,1200.00,4.74,4 +651.72,700.00,1200.00,3.38,4 +1647.59,700.00,1200.00,2.02,4 +1617.18,700.00,1200.00,0.66,3 +2443.64,700.00,1200.00,5.58,3 +2411.00,700.00,1200.00,4.22,3 +2528.52,700.00,1200.00,2.86,2 +0.00,700.00,1200.00,1.50,2 +0.00,700.00,1200.00,0.14,2 +0.00,700.00,1300.00,0.00,9 +0.00,700.00,1300.00,4.92,9 +0.00,700.00,1300.00,3.56,9 +0.00,700.00,1300.00,2.20,8 +0.00,700.00,1300.00,0.84,8 +1613.23,700.00,1300.00,5.77,8 +0.00,700.00,1300.00,4.41,7 +0.00,700.00,1300.00,3.05,7 +0.00,700.00,1300.00,1.69,7 +0.00,700.00,1300.00,0.33,6 +0.00,700.00,1300.00,5.25,6 +0.00,700.00,1300.00,3.89,6 +0.00,700.00,1300.00,2.53,5 +0.00,700.00,1300.00,1.17,5 +814.09,700.00,1300.00,6.10,5 +802.23,700.00,1300.00,4.74,4 +816.67,700.00,1300.00,3.38,4 +0.00,700.00,1300.00,2.02,4 +1659.79,700.00,1300.00,0.66,3 +2314.95,700.00,1300.00,5.58,3 +2303.95,700.00,1300.00,4.22,3 +0.00,700.00,1300.00,2.86,2 +0.00,700.00,1300.00,1.50,2 +2686.77,700.00,1300.00,0.14,2 +0.00,700.00,1400.00,0.00,9 +0.00,700.00,1400.00,4.92,9 +0.00,700.00,1400.00,3.56,9 +0.00,700.00,1400.00,2.20,8 +0.00,700.00,1400.00,0.84,8 +0.00,700.00,1400.00,5.77,8 +0.00,700.00,1400.00,4.41,7 +0.00,700.00,1400.00,3.05,7 +0.00,700.00,1400.00,1.69,7 +0.00,700.00,1400.00,0.33,6 +0.00,700.00,1400.00,5.25,6 +0.00,700.00,1400.00,3.89,6 +0.00,700.00,1400.00,2.53,5 +952.23,700.00,1400.00,1.17,5 +948.45,700.00,1400.00,6.10,5 +943.81,700.00,1400.00,4.74,4 +948.28,700.00,1400.00,3.38,4 +0.00,700.00,1400.00,2.02,4 +2398.11,700.00,1400.00,0.66,3 +2219.24,700.00,1400.00,5.58,3 +2221.82,700.00,1400.00,4.22,3 +2262.54,700.00,1400.00,2.86,2 +2518.56,700.00,1400.00,1.50,2 +0.00,700.00,1400.00,0.14,2 +0.00,700.00,1500.00,0.00,9 +0.00,700.00,1500.00,4.92,9 +3537.63,700.00,1500.00,3.56,9 +3532.65,700.00,1500.00,2.20,8 +0.00,700.00,1500.00,0.84,8 +0.00,700.00,1500.00,5.77,8 +0.00,700.00,1500.00,4.41,7 +0.00,700.00,1500.00,3.05,7 +0.00,700.00,1500.00,1.69,7 +0.00,700.00,1500.00,0.33,6 +0.00,700.00,1500.00,5.25,6 +1913.06,700.00,1500.00,3.89,6 +0.00,700.00,1500.00,2.53,5 +1101.72,700.00,1500.00,1.17,5 +1101.89,700.00,1500.00,6.10,5 +1098.28,700.00,1500.00,4.74,4 +1105.15,700.00,1500.00,3.38,4 +0.00,700.00,1500.00,2.02,4 +2385.40,700.00,1500.00,0.66,3 +2085.57,700.00,1500.00,5.58,3 +2098.11,700.00,1500.00,4.22,3 +2087.46,700.00,1500.00,2.86,2 +2348.80,700.00,1500.00,1.50,2 +0.00,700.00,1500.00,0.14,2 +0.00,700.00,1500.00,1.57,9 +0.00,700.00,1500.00,0.21,9 +0.00,700.00,1500.00,5.13,9 +1872.16,700.00,1500.00,3.77,8 +1852.75,700.00,1500.00,2.41,8 +1144.50,700.00,1500.00,1.06,8 +0.00,700.00,1500.00,5.98,7 +1129.55,700.00,1500.00,4.62,7 +1109.97,700.00,1500.00,3.26,7 +1116.49,700.00,1500.00,1.90,6 +2450.00,700.00,1500.00,0.54,6 +2158.08,700.00,1500.00,5.46,6 +0.00,700.00,1500.00,4.10,5 +0.00,700.00,1500.00,2.74,5 +0.00,700.00,1500.00,1.38,5 +2155.50,700.00,1500.00,0.02,4 +2391.07,700.00,1500.00,4.95,4 +0.00,700.00,1500.00,3.59,4 +2214.26,700.00,1500.00,2.23,3 +2228.35,700.00,1500.00,0.87,3 +3527.49,700.00,1500.00,5.79,3 +0.00,700.00,1500.00,4.43,2 +0.00,700.00,1500.00,3.07,2 +0.00,700.00,1500.00,1.71,2 +0.00,600.00,1500.00,1.57,9 +0.00,600.00,1500.00,0.21,9 +0.00,600.00,1500.00,5.13,9 +0.00,600.00,1500.00,3.77,8 +1729.04,600.00,1500.00,2.41,8 +1178.69,600.00,1500.00,1.06,8 +1193.81,600.00,1500.00,5.98,7 +1179.55,600.00,1500.00,4.62,7 +1171.48,600.00,1500.00,3.26,7 +1200.00,600.00,1500.00,1.90,6 +0.00,600.00,1500.00,0.54,6 +2593.99,600.00,1500.00,5.46,6 +0.00,600.00,1500.00,4.10,5 +0.00,600.00,1500.00,2.74,5 +0.00,600.00,1500.00,1.38,5 +2322.85,600.00,1500.00,0.02,4 +0.00,600.00,1500.00,4.95,4 +0.00,600.00,1500.00,3.59,4 +2192.44,600.00,1500.00,2.23,3 +3461.34,600.00,1500.00,0.87,3 +0.00,600.00,1500.00,5.79,3 +0.00,600.00,1500.00,4.43,2 +0.00,600.00,1500.00,3.07,2 +0.00,600.00,1500.00,1.71,2 +0.00,500.00,1500.00,1.57,9 +0.00,500.00,1500.00,0.21,9 +0.00,500.00,1500.00,5.13,9 +0.00,500.00,1500.00,3.77,8 +0.00,500.00,1500.00,2.41,8 +1249.14,500.00,1500.00,1.06,8 +1253.78,500.00,1500.00,5.98,7 +1231.96,500.00,1500.00,4.62,7 +1247.08,500.00,1500.00,3.26,7 +1243.64,500.00,1500.00,1.90,6 +0.00,500.00,1500.00,0.54,6 +2781.27,500.00,1500.00,5.46,6 +0.00,500.00,1500.00,4.10,5 +0.00,500.00,1500.00,2.74,5 +0.00,500.00,1500.00,1.38,5 +2496.56,500.00,1500.00,0.02,4 +2672.85,500.00,1500.00,4.95,4 +0.00,500.00,1500.00,3.59,4 +2169.24,500.00,1500.00,2.23,3 +2208.08,500.00,1500.00,0.87,3 +3424.40,500.00,1500.00,5.79,3 +0.00,500.00,1500.00,4.43,2 +0.00,500.00,1500.00,3.07,2 +0.00,500.00,1500.00,1.71,2 +0.00,400.00,1500.00,1.57,9 +0.00,400.00,1500.00,0.21,9 +0.00,400.00,1500.00,5.13,9 +1597.77,400.00,1500.00,3.77,8 +1580.93,400.00,1500.00,2.41,8 +0.00,400.00,1500.00,1.06,8 +0.00,400.00,1500.00,5.98,7 +1307.04,400.00,1500.00,4.62,7 +1293.81,400.00,1500.00,3.26,7 +1298.28,400.00,1500.00,1.90,6 +0.00,400.00,1500.00,0.54,6 +2654.98,400.00,1500.00,5.46,6 +0.00,400.00,1500.00,4.10,5 +0.00,400.00,1500.00,2.74,5 +0.00,400.00,1500.00,1.38,5 +2803.61,400.00,1500.00,0.02,4 +0.00,400.00,1500.00,4.95,4 +0.00,400.00,1500.00,3.59,4 +3379.21,400.00,1500.00,2.23,3 +3360.31,400.00,1500.00,0.87,3 +929.90,400.00,1500.00,5.79,3 +0.00,400.00,1500.00,4.43,2 +0.00,400.00,1500.00,3.07,2 +0.00,400.00,1500.00,1.71,2 +0.00,300.00,1500.00,1.57,9 +0.00,300.00,1500.00,0.21,9 +0.00,300.00,1500.00,5.13,9 +0.00,300.00,1500.00,3.77,8 +0.00,300.00,1500.00,2.41,8 +0.00,300.00,1500.00,1.06,8 +0.00,300.00,1500.00,5.98,7 +0.00,300.00,1500.00,4.62,7 +0.00,300.00,1500.00,3.26,7 +0.00,300.00,1500.00,1.90,6 +3136.60,300.00,1500.00,0.54,6 +3126.29,300.00,1500.00,5.46,6 +0.00,300.00,1500.00,4.10,5 +0.00,300.00,1500.00,2.74,5 +0.00,300.00,1500.00,1.38,5 +2948.63,300.00,1500.00,0.02,4 +0.00,300.00,1500.00,4.95,4 +0.00,300.00,1500.00,3.59,4 +3313.92,300.00,1500.00,2.23,3 +1518.90,300.00,1500.00,0.87,3 +1547.25,300.00,1500.00,5.79,3 +0.00,300.00,1500.00,4.43,2 +0.00,300.00,1500.00,3.07,2 +0.00,300.00,1500.00,1.71,2 +0.00,200.00,1500.00,1.57,9 +0.00,200.00,1500.00,0.21,9 +0.00,200.00,1500.00,5.13,9 +2783.85,200.00,1500.00,3.77,8 +0.00,200.00,1500.00,2.41,8 +0.00,200.00,1500.00,1.06,8 +0.00,200.00,1500.00,5.98,7 +0.00,200.00,1500.00,4.62,7 +0.00,200.00,1500.00,3.26,7 +0.00,200.00,1500.00,1.90,6 +3342.78,200.00,1500.00,0.54,6 +3311.17,200.00,1500.00,5.46,6 +0.00,200.00,1500.00,4.10,5 +0.00,200.00,1500.00,2.74,5 +0.00,200.00,1500.00,1.38,5 +3106.70,200.00,1500.00,0.02,4 +0.00,200.00,1500.00,4.95,4 +0.00,200.00,1500.00,3.59,4 +0.00,200.00,1500.00,2.23,3 +1431.44,200.00,1500.00,0.87,3 +626.46,200.00,1500.00,5.79,3 +0.00,200.00,1500.00,4.43,2 +0.00,200.00,1500.00,3.07,2 +0.00,200.00,1500.00,1.71,2 +0.00,100.00,1500.00,1.57,9 +0.00,100.00,1500.00,0.21,9 +2637.97,100.00,1500.00,5.13,9 +2617.01,100.00,1500.00,3.77,8 +1314.60,100.00,1500.00,2.41,8 +0.00,100.00,1500.00,1.06,8 +0.00,100.00,1500.00,5.98,7 +0.00,100.00,1500.00,4.62,7 +0.00,100.00,1500.00,3.26,7 +0.00,100.00,1500.00,1.90,6 +0.00,100.00,1500.00,0.54,6 +3208.08,100.00,1500.00,5.46,6 +0.00,100.00,1500.00,4.10,5 +0.00,100.00,1500.00,2.74,5 +0.00,100.00,1500.00,1.38,5 +0.00,100.00,1500.00,0.02,4 +0.00,100.00,1500.00,4.95,4 +0.00,100.00,1500.00,3.59,4 +3226.98,100.00,1500.00,2.23,3 +1297.08,100.00,1500.00,0.87,3 +882.47,100.00,1500.00,5.79,3 +0.00,100.00,1500.00,4.43,2 +0.00,100.00,1500.00,3.07,2 +0.00,100.00,1500.00,1.71,2 +0.00,100.00,1500.00,3.14,9 +0.00,100.00,1500.00,1.78,9 +0.00,100.00,1500.00,0.42,9 +3484.02,100.00,1500.00,5.35,8 +3198.45,100.00,1500.00,3.99,8 +3162.54,100.00,1500.00,2.63,8 +3202.75,100.00,1500.00,1.27,7 +3213.06,100.00,1500.00,6.19,7 +0.00,100.00,1500.00,4.83,7 +0.00,100.00,1500.00,3.47,6 +0.00,100.00,1500.00,2.11,6 +3270.10,100.00,1500.00,0.75,6 +0.00,100.00,1500.00,5.67,5 +0.00,100.00,1500.00,4.31,5 +0.00,100.00,1500.00,2.95,5 +946.05,100.00,1500.00,1.59,4 +1370.10,100.00,1500.00,0.23,4 +0.00,100.00,1500.00,5.16,4 +0.00,100.00,1500.00,3.80,3 +2615.29,100.00,1500.00,2.44,3 +2608.42,100.00,1500.00,1.08,3 +0.00,100.00,1500.00,6.00,2 +0.00,100.00,1500.00,4.64,2 +0.00,100.00,1500.00,3.28,2 +0.00,100.00,1400.00,3.14,9 +0.00,100.00,1400.00,1.78,9 +0.00,100.00,1400.00,0.42,9 +3410.82,100.00,1400.00,5.35,8 +3153.95,100.00,1400.00,3.99,8 +3148.97,100.00,1400.00,2.63,8 +3160.14,100.00,1400.00,1.27,7 +0.00,100.00,1400.00,6.19,7 +0.00,100.00,1400.00,4.83,7 +0.00,100.00,1400.00,3.47,6 +0.00,100.00,1400.00,2.11,6 +3476.29,100.00,1400.00,0.75,6 +0.00,100.00,1400.00,5.67,5 +0.00,100.00,1400.00,4.31,5 +0.00,100.00,1400.00,2.95,5 +1204.30,100.00,1400.00,1.59,4 +1540.89,100.00,1400.00,0.23,4 +0.00,100.00,1400.00,5.16,4 +0.00,100.00,1400.00,3.80,3 +1198.63,100.00,1400.00,2.44,3 +1184.54,100.00,1400.00,1.08,3 +0.00,100.00,1400.00,6.00,2 +0.00,100.00,1400.00,4.64,2 +0.00,100.00,1400.00,3.28,2 +0.00,100.00,1300.00,3.14,9 +0.00,100.00,1300.00,1.78,9 +0.00,100.00,1300.00,0.42,9 +0.00,100.00,1300.00,5.35,8 +3152.58,100.00,1300.00,3.99,8 +3157.39,100.00,1300.00,2.63,8 +3160.31,100.00,1300.00,1.27,7 +3378.69,100.00,1300.00,6.19,7 +0.00,100.00,1300.00,4.83,7 +0.00,100.00,1300.00,3.47,6 +0.00,100.00,1300.00,2.11,6 +3656.53,100.00,1300.00,0.75,6 +0.00,100.00,1300.00,5.67,5 +0.00,100.00,1300.00,4.31,5 +0.00,100.00,1300.00,2.95,5 +0.00,100.00,1300.00,1.59,4 +0.00,100.00,1300.00,0.23,4 +0.00,100.00,1300.00,5.16,4 +0.00,100.00,1300.00,3.80,3 +1013.92,100.00,1300.00,2.44,3 +986.94,100.00,1300.00,1.08,3 +0.00,100.00,1300.00,6.00,2 +0.00,100.00,1300.00,4.64,2 +0.00,100.00,1300.00,3.28,2 +0.00,100.00,1200.00,3.14,9 +0.00,100.00,1200.00,1.78,9 +0.00,100.00,1200.00,0.42,9 +3220.62,100.00,1200.00,5.35,8 +3107.90,100.00,1200.00,3.99,8 +3098.63,100.00,1200.00,2.63,8 +3116.15,100.00,1200.00,1.27,7 +3439.35,100.00,1200.00,6.19,7 +0.00,100.00,1200.00,4.83,7 +0.00,100.00,1200.00,3.47,6 +0.00,100.00,1200.00,2.11,6 +3854.30,100.00,1200.00,0.75,6 +0.00,100.00,1200.00,5.67,5 +0.00,100.00,1200.00,4.31,5 +0.00,100.00,1200.00,2.95,5 +1523.02,100.00,1200.00,1.59,4 +0.00,100.00,1200.00,0.23,4 +0.00,100.00,1200.00,5.16,4 +2502.75,100.00,1200.00,3.80,3 +936.08,100.00,1200.00,2.44,3 +875.43,100.00,1200.00,1.08,3 +0.00,100.00,1200.00,6.00,2 +0.00,100.00,1200.00,4.64,2 +0.00,100.00,1200.00,3.28,2 +0.00,100.00,1100.00,3.14,9 +0.00,100.00,1100.00,1.78,9 +0.00,100.00,1100.00,0.42,9 +0.00,100.00,1100.00,5.35,8 +3067.70,100.00,1100.00,3.99,8 +3066.32,100.00,1100.00,2.63,8 +3080.41,100.00,1100.00,1.27,7 +0.00,100.00,1100.00,6.19,7 +0.00,100.00,1100.00,4.83,7 +0.00,100.00,1100.00,3.47,6 +0.00,100.00,1100.00,2.11,6 +0.00,100.00,1100.00,0.75,6 +0.00,100.00,1100.00,5.67,5 +0.00,100.00,1100.00,4.31,5 +0.00,100.00,1100.00,2.95,5 +0.00,100.00,1100.00,1.59,4 +0.00,100.00,1100.00,0.23,4 +0.00,100.00,1100.00,5.16,4 +891.92,100.00,1100.00,3.80,3 +832.47,100.00,1100.00,2.44,3 +874.57,100.00,1100.00,1.08,3 +0.00,100.00,1100.00,6.00,2 +0.00,100.00,1100.00,4.64,2 +0.00,100.00,1100.00,3.28,2 +0.00,100.00,1000.00,3.14,9 +0.00,100.00,1000.00,1.78,9 +0.00,100.00,1000.00,0.42,9 +3066.67,100.00,1000.00,5.35,8 +3028.69,100.00,1000.00,3.99,8 +3030.93,100.00,1000.00,2.63,8 +3032.47,100.00,1000.00,1.27,7 +0.00,100.00,1000.00,6.19,7 +0.00,100.00,1000.00,4.83,7 +0.00,100.00,1000.00,3.47,6 +0.00,100.00,1000.00,2.11,6 +0.00,100.00,1000.00,0.75,6 +0.00,100.00,1000.00,5.67,5 +0.00,100.00,1000.00,4.31,5 +0.00,100.00,1000.00,2.95,5 +0.00,100.00,1000.00,1.59,4 +0.00,100.00,1000.00,0.23,4 +0.00,100.00,1000.00,5.16,4 +0.00,100.00,1000.00,3.80,3 +0.00,100.00,1000.00,2.44,3 +0.00,100.00,1000.00,1.08,3 +0.00,100.00,1000.00,6.00,2 +0.00,100.00,1000.00,4.64,2 +0.00,100.00,1000.00,3.28,2 +0.00,100.00,900.00,3.14,9 +0.00,100.00,900.00,1.78,9 +0.00,100.00,900.00,0.42,9 +2981.10,100.00,900.00,5.35,8 +2959.28,100.00,900.00,3.99,8 +2957.73,100.00,900.00,2.63,8 +2975.94,100.00,900.00,1.27,7 +0.00,100.00,900.00,6.19,7 +0.00,100.00,900.00,4.83,7 +0.00,100.00,900.00,3.47,6 +0.00,100.00,900.00,2.11,6 +0.00,100.00,900.00,0.75,6 +0.00,100.00,900.00,5.67,5 +0.00,100.00,900.00,4.31,5 +0.00,100.00,900.00,2.95,5 +0.00,100.00,900.00,1.59,4 +0.00,100.00,900.00,0.23,4 +0.00,100.00,900.00,5.16,4 +744.33,100.00,900.00,3.80,3 +684.19,100.00,900.00,2.44,3 +0.00,100.00,900.00,1.08,3 +0.00,100.00,900.00,6.00,2 +0.00,100.00,900.00,4.64,2 +0.00,100.00,900.00,3.28,2 +0.00,100.00,900.00,4.71,9 +0.00,100.00,900.00,3.35,9 +0.00,100.00,900.00,1.99,9 +0.00,100.00,900.00,0.63,8 +0.00,100.00,900.00,5.56,8 +2088.49,100.00,900.00,4.20,8 +0.00,100.00,900.00,2.84,7 +0.00,100.00,900.00,1.48,7 +0.00,100.00,900.00,0.12,7 +0.00,100.00,900.00,5.04,6 +0.00,100.00,900.00,3.68,6 +0.00,100.00,900.00,2.32,6 +0.00,100.00,900.00,0.96,5 +0.00,100.00,900.00,5.88,5 +0.00,100.00,900.00,4.52,5 +0.00,100.00,900.00,3.16,4 +0.00,100.00,900.00,1.80,4 +0.00,100.00,900.00,0.44,4 +0.00,100.00,900.00,5.37,3 +0.00,100.00,900.00,4.01,3 +2946.56,100.00,900.00,2.65,3 +0.00,100.00,900.00,1.29,2 +2949.14,100.00,900.00,6.22,2 +0.00,100.00,900.00,4.86,2 +0.00,200.00,900.00,4.71,9 +0.00,200.00,900.00,3.35,9 +0.00,200.00,900.00,1.99,9 +0.00,200.00,900.00,0.63,8 +0.00,200.00,900.00,5.56,8 +2034.19,200.00,900.00,4.20,8 +0.00,200.00,900.00,2.84,7 +2068.38,200.00,900.00,1.48,7 +0.00,200.00,900.00,0.12,7 +0.00,200.00,900.00,5.04,6 +0.00,200.00,900.00,3.68,6 +0.00,200.00,900.00,2.32,6 +0.00,200.00,900.00,0.96,5 +0.00,200.00,900.00,5.88,5 +0.00,200.00,900.00,4.52,5 +0.00,200.00,900.00,3.16,4 +0.00,200.00,900.00,1.80,4 +0.00,200.00,900.00,0.44,4 +0.00,200.00,900.00,5.37,3 +0.00,200.00,900.00,4.01,3 +2805.67,200.00,900.00,2.65,3 +0.00,200.00,900.00,1.29,2 +0.00,200.00,900.00,6.22,2 +0.00,200.00,900.00,4.86,2 +0.00,300.00,900.00,4.71,9 +0.00,300.00,900.00,3.35,9 +0.00,300.00,900.00,1.99,9 +4144.67,300.00,900.00,0.63,8 +0.00,300.00,900.00,5.56,8 +2353.78,300.00,900.00,4.20,8 +0.00,300.00,900.00,2.84,7 +0.00,300.00,900.00,1.48,7 +0.00,300.00,900.00,0.12,7 +0.00,300.00,900.00,5.04,6 +0.00,300.00,900.00,3.68,6 +0.00,300.00,900.00,2.32,6 +0.00,300.00,900.00,0.96,5 +0.00,300.00,900.00,5.88,5 +0.00,300.00,900.00,4.52,5 +0.00,300.00,900.00,3.16,4 +0.00,300.00,900.00,1.80,4 +539.86,300.00,900.00,0.44,4 +0.00,300.00,900.00,5.37,3 +2715.12,300.00,900.00,4.01,3 +2679.72,300.00,900.00,2.65,3 +0.00,300.00,900.00,1.29,2 +2672.51,300.00,900.00,6.22,2 +0.00,300.00,900.00,4.86,2 +2945.36,400.00,900.00,4.71,9 +0.00,400.00,900.00,3.35,9 +0.00,400.00,900.00,1.99,9 +4029.55,400.00,900.00,0.63,8 +0.00,400.00,900.00,5.56,8 +0.00,400.00,900.00,4.20,8 +0.00,400.00,900.00,2.84,7 +0.00,400.00,900.00,1.48,7 +0.00,400.00,900.00,0.12,7 +0.00,400.00,900.00,5.04,6 +0.00,400.00,900.00,3.68,6 +1295.88,400.00,900.00,2.32,6 +0.00,400.00,900.00,0.96,5 +0.00,400.00,900.00,5.88,5 +629.38,400.00,900.00,4.52,5 +621.13,400.00,900.00,3.16,4 +611.86,400.00,900.00,1.80,4 +633.33,400.00,900.00,0.44,4 +0.00,400.00,900.00,5.37,3 +1631.96,400.00,900.00,4.01,3 +2506.70,400.00,900.00,2.65,3 +2557.90,400.00,900.00,1.29,2 +2613.92,400.00,900.00,6.22,2 +0.00,400.00,900.00,4.86,2 +0.00,400.00,900.00,0.00,9 +0.00,400.00,900.00,4.92,9 +0.00,400.00,900.00,3.56,9 +1281.62,400.00,900.00,2.20,8 +1256.01,400.00,900.00,0.84,8 +1245.70,400.00,900.00,5.77,8 +0.00,400.00,900.00,4.41,7 +0.00,400.00,900.00,3.05,7 +630.07,400.00,900.00,1.69,7 +626.12,400.00,900.00,0.33,6 +642.27,400.00,900.00,5.25,6 +1699.66,400.00,900.00,3.89,6 +0.00,400.00,900.00,2.53,5 +2636.94,400.00,900.00,1.17,5 +0.00,400.00,900.00,6.10,5 +2546.39,400.00,900.00,4.74,4 +2981.44,400.00,900.00,3.38,4 +2981.44,400.00,900.00,2.02,4 +2985.40,400.00,900.00,0.66,3 +4028.35,400.00,900.00,5.58,3 +4017.70,400.00,900.00,4.22,3 +0.00,400.00,900.00,2.86,2 +0.00,400.00,900.00,1.50,2 +0.00,400.00,900.00,0.14,2 +0.00,400.00,1000.00,0.00,9 +0.00,400.00,1000.00,4.92,9 +0.00,400.00,1000.00,3.56,9 +1207.56,400.00,1000.00,2.20,8 +0.00,400.00,1000.00,0.84,8 +1185.05,400.00,1000.00,5.77,8 +1183.85,400.00,1000.00,4.41,7 +0.00,400.00,1000.00,3.05,7 +0.00,400.00,1000.00,1.69,7 +0.00,400.00,1000.00,0.33,6 +0.00,400.00,1000.00,5.25,6 +0.00,400.00,1000.00,3.89,6 +0.00,400.00,1000.00,2.53,5 +0.00,400.00,1000.00,1.17,5 +0.00,400.00,1000.00,6.10,5 +2690.21,400.00,1000.00,4.74,4 +2696.05,400.00,1000.00,3.38,4 +3051.20,400.00,1000.00,2.02,4 +0.00,400.00,1000.00,0.66,3 +3936.94,400.00,1000.00,5.58,3 +3912.03,400.00,1000.00,4.22,3 +0.00,400.00,1000.00,2.86,2 +0.00,400.00,1000.00,1.50,2 +0.00,400.00,1000.00,0.14,2 +0.00,400.00,1100.00,0.00,9 +0.00,400.00,1100.00,4.92,9 +0.00,400.00,1100.00,3.56,9 +1187.11,400.00,1100.00,2.20,8 +1140.55,400.00,1100.00,0.84,8 +0.00,400.00,1100.00,5.77,8 +0.00,400.00,1100.00,4.41,7 +0.00,400.00,1100.00,3.05,7 +0.00,400.00,1100.00,1.69,7 +0.00,400.00,1100.00,0.33,6 +0.00,400.00,1100.00,5.25,6 +0.00,400.00,1100.00,3.89,6 +0.00,400.00,1100.00,2.53,5 +0.00,400.00,1100.00,1.17,5 +0.00,400.00,1100.00,6.10,5 +2792.27,400.00,1100.00,4.74,4 +3114.26,400.00,1100.00,3.38,4 +0.00,400.00,1100.00,2.02,4 +0.00,400.00,1100.00,0.66,3 +0.00,400.00,1100.00,5.58,3 +3839.17,400.00,1100.00,4.22,3 +0.00,400.00,1100.00,2.86,2 +0.00,400.00,1100.00,1.50,2 +0.00,400.00,1100.00,0.14,2 +0.00,400.00,1200.00,0.00,9 +0.00,400.00,1200.00,4.92,9 +0.00,400.00,1200.00,3.56,9 +0.00,400.00,1200.00,2.20,8 +1111.68,400.00,1200.00,0.84,8 +1121.65,400.00,1200.00,5.77,8 +0.00,400.00,1200.00,4.41,7 +0.00,400.00,1200.00,3.05,7 +0.00,400.00,1200.00,1.69,7 +0.00,400.00,1200.00,0.33,6 +0.00,400.00,1200.00,5.25,6 +0.00,400.00,1200.00,3.89,6 +0.00,400.00,1200.00,2.53,5 +0.00,400.00,1200.00,1.17,5 +0.00,400.00,1200.00,6.10,5 +2934.36,400.00,1200.00,4.74,4 +3215.64,400.00,1200.00,3.38,4 +0.00,400.00,1200.00,2.02,4 +0.00,400.00,1200.00,0.66,3 +3747.77,400.00,1200.00,5.58,3 +3754.30,400.00,1200.00,4.22,3 +0.00,400.00,1200.00,2.86,2 +0.00,400.00,1200.00,1.50,2 +0.00,400.00,1200.00,0.14,2 +0.00,400.00,1300.00,0.00,9 +0.00,400.00,1300.00,4.92,9 +0.00,400.00,1300.00,3.56,9 +2514.09,400.00,1300.00,2.20,8 +1041.58,400.00,1300.00,0.84,8 +1142.10,400.00,1300.00,5.77,8 +0.00,400.00,1300.00,4.41,7 +0.00,400.00,1300.00,3.05,7 +0.00,400.00,1300.00,1.69,7 +0.00,400.00,1300.00,0.33,6 +0.00,400.00,1300.00,5.25,6 +0.00,400.00,1300.00,3.89,6 +0.00,400.00,1300.00,2.53,5 +0.00,400.00,1300.00,1.17,5 +0.00,400.00,1300.00,6.10,5 +3119.59,400.00,1300.00,4.74,4 +0.00,400.00,1300.00,3.38,4 +0.00,400.00,1300.00,2.02,4 +0.00,400.00,1300.00,0.66,3 +3631.44,400.00,1300.00,5.58,3 +869.76,400.00,1300.00,4.22,3 +0.00,400.00,1300.00,2.86,2 +0.00,400.00,1300.00,1.50,2 +0.00,400.00,1300.00,0.14,2 +1208.08,400.00,1400.00,0.00,9 +0.00,400.00,1400.00,4.92,9 +0.00,400.00,1400.00,3.56,9 +0.00,400.00,1400.00,2.20,8 +1189.69,400.00,1400.00,0.84,8 +1100.52,400.00,1400.00,5.77,8 +0.00,400.00,1400.00,4.41,7 +0.00,400.00,1400.00,3.05,7 +0.00,400.00,1400.00,1.69,7 +0.00,400.00,1400.00,0.33,6 +0.00,400.00,1400.00,5.25,6 +0.00,400.00,1400.00,3.89,6 +0.00,400.00,1400.00,2.53,5 +0.00,400.00,1400.00,1.17,5 +0.00,400.00,1400.00,6.10,5 +3284.36,400.00,1400.00,4.74,4 +0.00,400.00,1400.00,3.38,4 +0.00,400.00,1400.00,2.02,4 +0.00,400.00,1400.00,0.66,3 +3526.80,400.00,1400.00,5.58,3 +3520.96,400.00,1400.00,4.22,3 +3545.02,400.00,1400.00,2.86,2 +0.00,400.00,1400.00,1.50,2 +0.00,400.00,1400.00,0.14,2 +999.83,400.00,1400.00,1.57,9 +0.00,400.00,1400.00,0.21,9 +0.00,400.00,1400.00,5.13,9 +0.00,400.00,1400.00,3.77,8 +0.00,400.00,1400.00,2.41,8 +3450.52,400.00,1400.00,1.06,8 +0.00,400.00,1400.00,5.98,7 +0.00,400.00,1400.00,4.62,7 +0.00,400.00,1400.00,3.26,7 +3477.83,400.00,1400.00,1.90,6 +0.00,400.00,1400.00,0.54,6 +0.00,400.00,1400.00,5.46,6 +0.00,400.00,1400.00,4.10,5 +0.00,400.00,1400.00,2.74,5 +0.00,400.00,1400.00,1.38,5 +1473.71,400.00,1400.00,0.02,4 +1498.45,400.00,1400.00,4.95,4 +1309.11,400.00,1400.00,3.59,4 +0.00,400.00,1400.00,2.23,3 +0.00,400.00,1400.00,0.87,3 +2389.00,400.00,1400.00,5.79,3 +0.00,400.00,1400.00,4.43,2 +0.00,400.00,1400.00,3.07,2 +0.00,400.00,1400.00,1.71,2 +0.00,400.00,1400.00,3.14,9 +0.00,400.00,1400.00,1.78,9 +0.00,400.00,1400.00,0.42,9 +0.00,400.00,1400.00,5.35,8 +0.00,400.00,1400.00,3.99,8 +1474.74,400.00,1400.00,2.63,8 +3580.93,400.00,1400.00,1.27,7 +3585.57,400.00,1400.00,6.19,7 +1502.06,400.00,1400.00,4.83,7 +0.00,400.00,1400.00,3.47,6 +0.00,400.00,1400.00,2.11,6 +0.00,400.00,1400.00,0.75,6 +0.00,400.00,1400.00,5.67,5 +0.00,400.00,1400.00,4.31,5 +0.00,400.00,1400.00,2.95,5 +0.00,400.00,1400.00,1.59,4 +1063.75,400.00,1400.00,0.23,4 +0.00,400.00,1400.00,5.16,4 +0.00,400.00,1400.00,3.80,3 +0.00,400.00,1400.00,2.44,3 +0.00,400.00,1400.00,1.08,3 +0.00,400.00,1400.00,6.00,2 +0.00,400.00,1400.00,4.64,2 +0.00,400.00,1400.00,3.28,2 +3273.02,400.00,1300.00,3.14,9 +3235.91,400.00,1300.00,1.78,9 +0.00,400.00,1300.00,0.42,9 +0.00,400.00,1300.00,5.35,8 +0.00,400.00,1300.00,3.99,8 +3567.01,400.00,1300.00,2.63,8 +0.00,400.00,1300.00,1.27,7 +1768.38,400.00,1300.00,6.19,7 +1745.88,400.00,1300.00,4.83,7 +1698.80,400.00,1300.00,3.47,6 +1407.22,400.00,1300.00,2.11,6 +0.00,400.00,1300.00,0.75,6 +0.00,400.00,1300.00,5.67,5 +0.00,400.00,1300.00,4.31,5 +0.00,400.00,1300.00,2.95,5 +1240.89,400.00,1300.00,1.59,4 +1243.47,400.00,1300.00,0.23,4 +0.00,400.00,1300.00,5.16,4 +0.00,400.00,1300.00,3.80,3 +0.00,400.00,1300.00,2.44,3 +0.00,400.00,1300.00,1.08,3 +0.00,400.00,1300.00,6.00,2 +0.00,400.00,1300.00,4.64,2 +0.00,400.00,1300.00,3.28,2 +1677.32,400.00,1300.00,4.71,9 +1734.19,400.00,1300.00,3.35,9 +0.00,400.00,1300.00,1.99,9 +1352.92,400.00,1300.00,0.63,8 +0.00,400.00,1300.00,5.56,8 +0.00,400.00,1300.00,4.20,8 +0.00,400.00,1300.00,2.84,7 +2641.41,400.00,1300.00,1.48,7 +1160.48,400.00,1300.00,0.12,7 +0.00,400.00,1300.00,5.04,6 +0.00,400.00,1300.00,3.68,6 +0.00,400.00,1300.00,2.32,6 +0.00,400.00,1300.00,0.96,5 +0.00,400.00,1300.00,5.88,5 +0.00,400.00,1300.00,4.52,5 +0.00,400.00,1300.00,3.16,4 +3274.74,400.00,1300.00,1.80,4 +3047.77,400.00,1300.00,0.44,4 +3058.42,400.00,1300.00,5.37,3 +3260.65,400.00,1300.00,4.01,3 +0.00,400.00,1300.00,2.65,3 +0.00,400.00,1300.00,1.29,2 +0.00,400.00,1300.00,6.22,2 +0.00,400.00,1300.00,4.86,2 +0.00,400.00,1300.00,0.00,9 +879.55,400.00,1300.00,4.92,9 +0.00,400.00,1300.00,3.56,9 +0.00,400.00,1300.00,2.20,8 +0.00,400.00,1300.00,0.84,8 +0.00,400.00,1300.00,5.77,8 +0.00,400.00,1300.00,4.41,7 +0.00,400.00,1300.00,3.05,7 +0.00,400.00,1300.00,1.69,7 +3260.65,400.00,1300.00,0.33,6 +3088.32,400.00,1300.00,5.25,6 +3105.15,400.00,1300.00,3.89,6 +0.00,400.00,1300.00,2.53,5 +0.00,400.00,1300.00,1.17,5 +0.00,400.00,1300.00,6.10,5 +0.00,400.00,1300.00,4.74,4 +0.00,400.00,1300.00,3.38,4 +0.00,400.00,1300.00,2.02,4 +1241.24,400.00,1300.00,0.66,3 +1028.01,400.00,1300.00,5.58,3 +1370.10,400.00,1300.00,4.22,3 +0.00,400.00,1300.00,2.86,2 +0.00,400.00,1300.00,1.50,2 +0.00,400.00,1300.00,0.14,2 +0.00,400.00,1300.00,1.57,9 +0.00,400.00,1300.00,0.21,9 +0.00,400.00,1300.00,5.13,9 +3027.49,400.00,1300.00,3.77,8 +3217.01,400.00,1300.00,2.41,8 +0.00,400.00,1300.00,1.06,8 +0.00,400.00,1300.00,5.98,7 +0.00,400.00,1300.00,4.62,7 +0.00,400.00,1300.00,3.26,7 +0.00,400.00,1300.00,1.90,6 +1721.99,400.00,1300.00,0.54,6 +1598.45,400.00,1300.00,5.46,6 +0.00,400.00,1300.00,4.10,5 +0.00,400.00,1300.00,2.74,5 +0.00,400.00,1300.00,1.38,5 +0.00,400.00,1300.00,0.02,4 +0.00,400.00,1300.00,4.95,4 +0.00,400.00,1300.00,3.59,4 +1135.91,400.00,1300.00,2.23,3 +1136.94,400.00,1300.00,0.87,3 +0.00,400.00,1300.00,5.79,3 +0.00,400.00,1300.00,4.43,2 +0.00,400.00,1300.00,3.07,2 +0.00,400.00,1300.00,1.71,2 +0.00,300.00,1300.00,1.57,9 +3075.09,300.00,1300.00,0.21,9 +3078.87,300.00,1300.00,5.13,9 +2911.00,300.00,1300.00,3.77,8 +3158.08,300.00,1300.00,2.41,8 +0.00,300.00,1300.00,1.06,8 +0.00,300.00,1300.00,5.98,7 +0.00,300.00,1300.00,4.62,7 +0.00,300.00,1300.00,3.26,7 +3710.65,300.00,1300.00,1.90,6 +1843.47,300.00,1300.00,0.54,6 +1862.71,300.00,1300.00,5.46,6 +0.00,300.00,1300.00,4.10,5 +0.00,300.00,1300.00,2.74,5 +0.00,300.00,1300.00,1.38,5 +0.00,300.00,1300.00,0.02,4 +2726.80,300.00,1300.00,4.95,4 +1138.83,300.00,1300.00,3.59,4 +0.00,300.00,1300.00,2.23,3 +0.00,300.00,1300.00,0.87,3 +0.00,300.00,1300.00,5.79,3 +0.00,300.00,1300.00,4.43,2 +0.00,300.00,1300.00,3.07,2 +0.00,300.00,1300.00,1.71,2 +0.00,200.00,1300.00,1.57,9 +2931.79,200.00,1300.00,0.21,9 +2800.34,200.00,1300.00,5.13,9 +2790.03,200.00,1300.00,3.77,8 +3087.11,200.00,1300.00,2.41,8 +0.00,200.00,1300.00,1.06,8 +0.00,200.00,1300.00,5.98,7 +0.00,200.00,1300.00,4.62,7 +0.00,200.00,1300.00,3.26,7 +3857.04,200.00,1300.00,1.90,6 +2028.18,200.00,1300.00,0.54,6 +0.00,200.00,1300.00,5.46,6 +0.00,200.00,1300.00,4.10,5 +0.00,200.00,1300.00,2.74,5 +0.00,200.00,1300.00,1.38,5 +0.00,200.00,1300.00,0.02,4 +0.00,200.00,1300.00,4.95,4 +1181.96,200.00,1300.00,3.59,4 +1182.82,200.00,1300.00,2.23,3 +0.00,200.00,1300.00,0.87,3 +0.00,200.00,1300.00,5.79,3 +0.00,200.00,1300.00,4.43,2 +0.00,200.00,1300.00,3.07,2 +0.00,200.00,1300.00,1.71,2 +0.00,100.00,1300.00,1.57,9 +2767.35,100.00,1300.00,0.21,9 +2683.33,100.00,1300.00,5.13,9 +2677.15,100.00,1300.00,3.77,8 +3026.98,100.00,1300.00,2.41,8 +3040.72,100.00,1300.00,1.06,8 +0.00,100.00,1300.00,5.98,7 +0.00,100.00,1300.00,4.62,7 +0.00,100.00,1300.00,3.26,7 +0.00,100.00,1300.00,1.90,6 +2168.38,100.00,1300.00,0.54,6 +2110.31,100.00,1300.00,5.46,6 +0.00,100.00,1300.00,4.10,5 +0.00,100.00,1300.00,2.74,5 +0.00,100.00,1300.00,1.38,5 +0.00,100.00,1300.00,0.02,4 +0.00,100.00,1300.00,4.95,4 +1203.26,100.00,1300.00,3.59,4 +1191.07,100.00,1300.00,2.23,3 +0.00,100.00,1300.00,0.87,3 +0.00,100.00,1300.00,5.79,3 +0.00,100.00,1300.00,4.43,2 +0.00,100.00,1300.00,3.07,2 +0.00,100.00,1300.00,1.71,2 +0.00,0.00,1300.00,1.57,9 +2577.49,0.00,1300.00,0.21,9 +2514.43,0.00,1300.00,5.13,9 +2506.87,0.00,1300.00,3.77,8 +2959.11,0.00,1300.00,2.41,8 +2962.71,0.00,1300.00,1.06,8 +0.00,0.00,1300.00,5.98,7 +0.00,0.00,1300.00,4.62,7 +4055.15,0.00,1300.00,3.26,7 +4061.00,0.00,1300.00,1.90,6 +2314.78,0.00,1300.00,0.54,6 +0.00,0.00,1300.00,5.46,6 +0.00,0.00,1300.00,4.10,5 +0.00,0.00,1300.00,2.74,5 +0.00,0.00,1300.00,1.38,5 +0.00,0.00,1300.00,0.02,4 +1247.42,0.00,1300.00,4.95,4 +0.00,0.00,1300.00,3.59,4 +0.00,0.00,1300.00,2.23,3 +604.12,0.00,1300.00,0.87,3 +591.92,0.00,1300.00,5.79,3 +602.75,0.00,1300.00,4.43,2 +605.15,0.00,1300.00,3.07,2 +0.00,0.00,1300.00,1.71,2 +0.00,-100.00,1300.00,1.57,9 +2418.04,-100.00,1300.00,0.21,9 +2392.96,-100.00,1300.00,5.13,9 +2397.08,-100.00,1300.00,3.77,8 +2915.46,-100.00,1300.00,2.41,8 +2914.09,-100.00,1300.00,1.06,8 +2925.09,-100.00,1300.00,5.98,7 +0.00,-100.00,1300.00,4.62,7 +0.00,-100.00,1300.00,3.26,7 +4163.06,-100.00,1300.00,1.90,6 +0.00,-100.00,1300.00,0.54,6 +0.00,-100.00,1300.00,5.46,6 +0.00,-100.00,1300.00,4.10,5 +0.00,-100.00,1300.00,2.74,5 +0.00,-100.00,1300.00,1.38,5 +0.00,-100.00,1300.00,0.02,4 +0.00,-100.00,1300.00,4.95,4 +1330.58,-100.00,1300.00,3.59,4 +0.00,-100.00,1300.00,2.23,3 +499.14,-100.00,1300.00,0.87,3 +489.35,-100.00,1300.00,5.79,3 +498.80,-100.00,1300.00,4.43,2 +500.00,-100.00,1300.00,3.07,2 +0.00,-100.00,1300.00,1.71,2 +1381.62,-200.00,1300.00,1.57,9 +2308.42,-200.00,1300.00,0.21,9 +2310.14,-200.00,1300.00,5.13,9 +2896.56,-200.00,1300.00,3.77,8 +2902.75,-200.00,1300.00,2.41,8 +2858.76,-200.00,1300.00,1.06,8 +2875.94,-200.00,1300.00,5.98,7 +0.00,-200.00,1300.00,4.62,7 +0.00,-200.00,1300.00,3.26,7 +0.00,-200.00,1300.00,1.90,6 +0.00,-200.00,1300.00,0.54,6 +0.00,-200.00,1300.00,5.46,6 +0.00,-200.00,1300.00,4.10,5 +0.00,-200.00,1300.00,2.74,5 +0.00,-200.00,1300.00,1.38,5 +0.00,-200.00,1300.00,0.02,4 +0.00,-200.00,1300.00,4.95,4 +0.00,-200.00,1300.00,3.59,4 +0.00,-200.00,1300.00,2.23,3 +398.80,-200.00,1300.00,0.87,3 +391.58,-200.00,1300.00,5.79,3 +393.64,-200.00,1300.00,4.43,2 +408.59,-200.00,1300.00,3.07,2 +0.00,-200.00,1300.00,1.71,2 +0.00,-200.00,1300.00,3.14,9 +0.00,-200.00,1300.00,1.78,9 +0.00,-200.00,1300.00,0.42,9 +0.00,-200.00,1300.00,5.35,8 +0.00,-200.00,1300.00,3.99,8 +0.00,-200.00,1300.00,2.63,8 +0.00,-200.00,1300.00,1.27,7 +0.00,-200.00,1300.00,6.19,7 +0.00,-200.00,1300.00,4.83,7 +0.00,-200.00,1300.00,3.47,6 +0.00,-200.00,1300.00,2.11,6 +0.00,-200.00,1300.00,0.75,6 +0.00,-200.00,1300.00,5.67,5 +443.30,-200.00,1300.00,4.31,5 +0.00,-200.00,1300.00,2.95,5 +434.36,-200.00,1300.00,1.59,4 +0.00,-200.00,1300.00,0.23,4 +1369.59,-200.00,1300.00,5.16,4 +2285.57,-200.00,1300.00,3.80,3 +2264.26,-200.00,1300.00,2.44,3 +2315.12,-200.00,1300.00,1.08,3 +0.00,-200.00,1300.00,6.00,2 +2867.18,-200.00,1300.00,4.64,2 +0.00,-200.00,1300.00,3.28,2 +0.00,-200.00,1200.00,3.14,9 +0.00,-200.00,1200.00,1.78,9 +0.00,-200.00,1200.00,0.42,9 +0.00,-200.00,1200.00,5.35,8 +0.00,-200.00,1200.00,3.99,8 +1063.57,-200.00,1200.00,2.63,8 +0.00,-200.00,1200.00,1.27,7 +0.00,-200.00,1200.00,6.19,7 +0.00,-200.00,1200.00,4.83,7 +0.00,-200.00,1200.00,3.47,6 +0.00,-200.00,1200.00,2.11,6 +0.00,-200.00,1200.00,0.75,6 +0.00,-200.00,1200.00,5.67,5 +0.00,-200.00,1200.00,4.31,5 +0.00,-200.00,1200.00,2.95,5 +597.94,-200.00,1200.00,1.59,4 +0.00,-200.00,1200.00,0.23,4 +2317.35,-200.00,1200.00,5.16,4 +2289.35,-200.00,1200.00,3.80,3 +2198.80,-200.00,1200.00,2.44,3 +2709.28,-200.00,1200.00,1.08,3 +0.00,-200.00,1200.00,6.00,2 +2704.30,-200.00,1200.00,4.64,2 +0.00,-200.00,1200.00,3.28,2 +0.00,-200.00,1100.00,3.14,9 +3943.30,-200.00,1100.00,1.78,9 +0.00,-200.00,1100.00,0.42,9 +0.00,-200.00,1100.00,5.35,8 +1724.57,-200.00,1100.00,3.99,8 +0.00,-200.00,1100.00,2.63,8 +0.00,-200.00,1100.00,1.27,7 +0.00,-200.00,1100.00,6.19,7 +1691.75,-200.00,1100.00,4.83,7 +0.00,-200.00,1100.00,3.47,6 +0.00,-200.00,1100.00,2.11,6 +0.00,-200.00,1100.00,0.75,6 +811.51,-200.00,1100.00,5.67,5 +778.87,-200.00,1100.00,4.31,5 +0.00,-200.00,1100.00,2.95,5 +781.27,-200.00,1100.00,1.59,4 +0.00,-200.00,1100.00,0.23,4 +2350.52,-200.00,1100.00,5.16,4 +2290.38,-200.00,1100.00,3.80,3 +2180.76,-200.00,1100.00,2.44,3 +2553.95,-200.00,1100.00,1.08,3 +2573.37,-200.00,1100.00,6.00,2 +2566.49,-200.00,1100.00,4.64,2 +0.00,-200.00,1100.00,3.28,2 +0.00,-200.00,1000.00,3.14,9 +0.00,-200.00,1000.00,1.78,9 +0.00,-200.00,1000.00,0.42,9 +0.00,-200.00,1000.00,5.35,8 +1636.77,-200.00,1000.00,3.99,8 +0.00,-200.00,1000.00,2.63,8 +0.00,-200.00,1000.00,1.27,7 +0.00,-200.00,1000.00,6.19,7 +0.00,-200.00,1000.00,4.83,7 +0.00,-200.00,1000.00,3.47,6 +2364.09,-200.00,1000.00,2.11,6 +0.00,-200.00,1000.00,0.75,6 +976.29,-200.00,1000.00,5.67,5 +948.97,-200.00,1000.00,4.31,5 +952.06,-200.00,1000.00,2.95,5 +950.52,-200.00,1000.00,1.59,4 +0.00,-200.00,1000.00,0.23,4 +2309.28,-200.00,1000.00,5.16,4 +2109.45,-200.00,1000.00,3.80,3 +2129.04,-200.00,1000.00,2.44,3 +2415.98,-200.00,1000.00,1.08,3 +2118.21,-200.00,1000.00,6.00,2 +2439.18,-200.00,1000.00,4.64,2 +0.00,-200.00,1000.00,3.28,2 +0.00,-200.00,900.00,3.14,9 +0.00,-200.00,900.00,1.78,9 +0.00,-200.00,900.00,0.42,9 +2192.61,-200.00,900.00,5.35,8 +1524.06,-200.00,900.00,3.99,8 +1105.67,-200.00,900.00,2.63,8 +0.00,-200.00,900.00,1.27,7 +0.00,-200.00,900.00,6.19,7 +0.00,-200.00,900.00,4.83,7 +0.00,-200.00,900.00,3.47,6 +1920.45,-200.00,900.00,2.11,6 +1139.86,-200.00,900.00,0.75,6 +1145.88,-200.00,900.00,5.67,5 +1116.67,-200.00,900.00,4.31,5 +1133.68,-200.00,900.00,2.95,5 +1121.48,-200.00,900.00,1.59,4 +2375.77,-200.00,900.00,0.23,4 +2345.36,-200.00,900.00,5.16,4 +2035.57,-200.00,900.00,3.80,3 +2036.08,-200.00,900.00,2.44,3 +2055.67,-200.00,900.00,1.08,3 +2059.97,-200.00,900.00,6.00,2 +0.00,-200.00,900.00,4.64,2 +0.00,-200.00,900.00,3.28,2 +3404.12,-200.00,800.00,3.14,9 +0.00,-200.00,800.00,1.78,9 +0.00,-200.00,800.00,0.42,9 +0.00,-200.00,800.00,5.35,8 +1467.35,-200.00,800.00,3.99,8 +1033.51,-200.00,800.00,2.63,8 +0.00,-200.00,800.00,1.27,7 +739.35,-200.00,800.00,6.19,7 +0.00,-200.00,800.00,4.83,7 +0.00,-200.00,800.00,3.47,6 +0.00,-200.00,800.00,2.11,6 +1330.41,-200.00,800.00,0.75,6 +1328.35,-200.00,800.00,5.67,5 +1353.78,-200.00,800.00,4.31,5 +0.00,-200.00,800.00,2.95,5 +1363.06,-200.00,800.00,1.59,4 +2414.09,-200.00,800.00,0.23,4 +2412.89,-200.00,800.00,5.16,4 +2010.14,-200.00,800.00,3.80,3 +2002.58,-200.00,800.00,2.44,3 +2049.83,-200.00,800.00,1.08,3 +0.00,-200.00,800.00,6.00,2 +0.00,-200.00,800.00,4.64,2 +0.00,-200.00,800.00,3.28,2 +1082.47,-200.00,800.00,4.71,9 +1029.38,-200.00,800.00,3.35,9 +0.00,-200.00,800.00,1.99,9 +0.00,-200.00,800.00,0.63,8 +1308.93,-200.00,800.00,5.56,8 +1291.92,-200.00,800.00,4.20,8 +1324.57,-200.00,800.00,2.84,7 +1308.59,-200.00,800.00,1.48,7 +0.00,-200.00,800.00,0.12,7 +2442.61,-200.00,800.00,5.04,6 +2435.05,-200.00,800.00,3.68,6 +2075.43,-200.00,800.00,2.32,6 +0.00,-200.00,800.00,0.96,5 +0.00,-200.00,800.00,5.88,5 +0.00,-200.00,800.00,4.52,5 +2237.63,-200.00,800.00,3.16,4 +0.00,-200.00,800.00,1.80,4 +0.00,-200.00,800.00,0.44,4 +2002.92,-200.00,800.00,5.37,3 +0.00,-200.00,800.00,4.01,3 +1455.67,-200.00,800.00,2.65,3 +0.00,-200.00,800.00,1.29,2 +0.00,-200.00,800.00,6.22,2 +0.00,-200.00,800.00,4.86,2 +1270.79,-200.00,800.00,0.00,9 +0.00,-200.00,800.00,4.92,9 +2445.88,-200.00,800.00,3.56,9 +2027.15,-200.00,800.00,2.20,8 +2004.30,-200.00,800.00,0.84,8 +2008.93,-200.00,800.00,5.77,8 +2020.62,-200.00,800.00,4.41,7 +2223.54,-200.00,800.00,3.05,7 +0.00,-200.00,800.00,1.69,7 +0.00,-200.00,800.00,0.33,6 +2058.59,-200.00,800.00,5.25,6 +2039.86,-200.00,800.00,3.89,6 +0.00,-200.00,800.00,2.53,5 +0.00,-200.00,800.00,1.17,5 +0.00,-200.00,800.00,6.10,5 +0.00,-200.00,800.00,4.74,4 +1346.05,-200.00,800.00,3.38,4 +0.00,-200.00,800.00,2.02,4 +0.00,-200.00,800.00,0.66,3 +0.00,-200.00,800.00,5.58,3 +0.00,-200.00,800.00,4.22,3 +0.00,-200.00,800.00,2.86,2 +0.00,-200.00,800.00,1.50,2 +0.00,-200.00,800.00,0.14,2 +2173.02,-200.00,800.00,1.57,9 +0.00,-200.00,800.00,0.21,9 +0.00,-200.00,800.00,5.13,9 +1975.26,-200.00,800.00,3.77,8 +3320.79,-200.00,800.00,2.41,8 +1921.13,-200.00,800.00,1.06,8 +0.00,-200.00,800.00,5.98,7 +0.00,-200.00,800.00,4.62,7 +1459.11,-200.00,800.00,3.26,7 +1214.26,-200.00,800.00,1.90,6 +0.00,-200.00,800.00,0.54,6 +0.00,-200.00,800.00,5.46,6 +0.00,-200.00,800.00,4.10,5 +0.00,-200.00,800.00,2.74,5 +0.00,-200.00,800.00,1.38,5 +1311.51,-200.00,800.00,0.02,4 +1300.86,-200.00,800.00,4.95,4 +1329.55,-200.00,800.00,3.59,4 +0.00,-200.00,800.00,2.23,3 +2403.44,-200.00,800.00,0.87,3 +2015.81,-200.00,800.00,5.79,3 +2425.26,-200.00,800.00,4.43,2 +0.00,-200.00,800.00,3.07,2 +0.00,-200.00,800.00,1.71,2 +0.00,-200.00,800.00,3.14,9 +1471.99,-200.00,800.00,1.78,9 +0.00,-200.00,800.00,0.42,9 +1191.07,-200.00,800.00,5.35,8 +0.00,-200.00,800.00,3.99,8 +0.00,-200.00,800.00,2.63,8 +1135.57,-200.00,800.00,1.27,7 +0.00,-200.00,800.00,6.19,7 +1351.72,-200.00,800.00,4.83,7 +1331.10,-200.00,800.00,3.47,6 +1320.27,-200.00,800.00,2.11,6 +1347.08,-200.00,800.00,0.75,6 +0.00,-200.00,800.00,5.67,5 +0.00,-200.00,800.00,4.31,5 +0.00,-200.00,800.00,2.95,5 +2442.78,-200.00,800.00,1.59,4 +2012.89,-200.00,800.00,0.23,4 +2214.43,-200.00,800.00,5.16,4 +2199.83,-200.00,800.00,3.80,3 +0.00,-200.00,800.00,2.44,3 +1962.37,-200.00,800.00,1.08,3 +0.00,-200.00,800.00,6.00,2 +0.00,-200.00,800.00,4.64,2 +0.00,-200.00,800.00,3.28,2 +0.00,-200.00,800.00,4.71,9 +1286.08,-200.00,800.00,3.35,9 +1281.62,-200.00,800.00,1.99,9 +1286.25,-200.00,800.00,0.63,8 +1915.12,-200.00,800.00,5.56,8 +2064.43,-200.00,800.00,4.20,8 +2463.92,-200.00,800.00,2.84,7 +2442.78,-200.00,800.00,1.48,7 +2072.85,-200.00,800.00,0.12,7 +2219.93,-200.00,800.00,5.04,6 +2067.18,-200.00,800.00,3.68,6 +2228.87,-200.00,800.00,2.32,6 +0.00,-200.00,800.00,0.96,5 +0.00,-200.00,800.00,5.88,5 +0.00,-200.00,800.00,4.52,5 +0.00,-200.00,800.00,3.16,4 +0.00,-200.00,800.00,1.80,4 +0.00,-200.00,800.00,0.44,4 +1441.41,-200.00,800.00,5.37,3 +0.00,-200.00,800.00,4.01,3 +0.00,-200.00,800.00,2.65,3 +0.00,-200.00,800.00,1.29,2 +0.00,-200.00,800.00,6.22,2 +0.00,-200.00,800.00,4.86,2 +1998.80,-200.00,800.00,0.00,9 +1976.80,-200.00,800.00,4.92,9 +1999.83,-200.00,800.00,3.56,9 +2158.93,-200.00,800.00,2.20,8 +0.00,-200.00,800.00,0.84,8 +0.00,-200.00,800.00,5.77,8 +0.00,-200.00,800.00,4.41,7 +3355.67,-200.00,800.00,3.05,7 +0.00,-200.00,800.00,1.69,7 +0.00,-200.00,800.00,0.33,6 +0.00,-200.00,800.00,5.25,6 +0.00,-200.00,800.00,3.89,6 +0.00,-200.00,800.00,2.53,5 +0.00,-200.00,800.00,1.17,5 +0.00,-200.00,800.00,6.10,5 +0.00,-200.00,800.00,4.74,4 +0.00,-200.00,800.00,3.38,4 +0.00,-200.00,800.00,2.02,4 +1288.14,-200.00,800.00,0.66,3 +1288.14,-200.00,800.00,5.58,3 +1296.05,-200.00,800.00,4.22,3 +0.00,-200.00,800.00,2.86,2 +0.00,-200.00,800.00,1.50,2 +0.00,-200.00,800.00,0.14,2 +3337.11,-200.00,800.00,1.57,9 +3409.62,-200.00,800.00,0.21,9 +0.00,-200.00,800.00,5.13,9 +0.00,-200.00,800.00,3.77,8 +0.00,-200.00,800.00,2.41,8 +1481.96,-200.00,800.00,1.06,8 +1754.81,-200.00,800.00,5.98,7 +0.00,-200.00,800.00,4.62,7 +0.00,-200.00,800.00,3.26,7 +0.00,-200.00,800.00,1.90,6 +0.00,-200.00,800.00,0.54,6 +0.00,-200.00,800.00,5.46,6 +0.00,-200.00,800.00,4.10,5 +0.00,-200.00,800.00,2.74,5 +0.00,-200.00,800.00,1.38,5 +0.00,-200.00,800.00,0.02,4 +2411.86,-200.00,800.00,4.95,4 +2423.71,-200.00,800.00,3.59,4 +1994.67,-200.00,800.00,2.23,3 +1980.41,-200.00,800.00,0.87,3 +2017.35,-200.00,800.00,5.79,3 +2187.80,-200.00,800.00,4.43,2 +0.00,-200.00,800.00,3.07,2 +0.00,-200.00,800.00,1.71,2 +0.00,-200.00,800.00,3.14,9 +0.00,-200.00,800.00,1.78,9 +0.00,-200.00,800.00,0.42,9 +0.00,-200.00,800.00,5.35,8 +1326.12,-200.00,800.00,3.99,8 +1290.72,-200.00,800.00,2.63,8 +1329.38,-200.00,800.00,1.27,7 +1343.64,-200.00,800.00,6.19,7 +0.00,-200.00,800.00,4.83,7 +2445.19,-200.00,800.00,3.47,6 +2436.08,-200.00,800.00,2.11,6 +2454.64,-200.00,800.00,0.75,6 +0.00,-200.00,800.00,5.67,5 +0.00,-200.00,800.00,4.31,5 +0.00,-200.00,800.00,2.95,5 +2211.17,-200.00,800.00,1.59,4 +0.00,-200.00,800.00,0.23,4 +0.00,-200.00,800.00,5.16,4 +1976.46,-200.00,800.00,3.80,3 +1242.27,-200.00,800.00,2.44,3 +0.00,-200.00,800.00,1.08,3 +0.00,-200.00,800.00,6.00,2 +0.00,-200.00,800.00,4.64,2 +0.00,-200.00,800.00,3.28,2 +0.00,-200.00,700.00,3.14,9 +0.00,-200.00,700.00,1.78,9 +0.00,-200.00,700.00,0.42,9 +1658.93,-200.00,700.00,5.35,8 +1315.46,-200.00,700.00,3.99,8 +1299.66,-200.00,700.00,2.63,8 +1330.58,-200.00,700.00,1.27,7 +1308.08,-200.00,700.00,6.19,7 +0.00,-200.00,700.00,4.83,7 +2577.66,-200.00,700.00,3.47,6 +2570.62,-200.00,700.00,2.11,6 +2632.13,-200.00,700.00,0.75,6 +0.00,-200.00,700.00,5.67,5 +0.00,-200.00,700.00,4.31,5 +0.00,-200.00,700.00,2.95,5 +0.00,-200.00,700.00,1.59,4 +0.00,-200.00,700.00,0.23,4 +3340.72,-200.00,700.00,5.16,4 +2043.13,-200.00,700.00,3.80,3 +0.00,-200.00,700.00,2.44,3 +1286.77,-200.00,700.00,1.08,3 +0.00,-200.00,700.00,6.00,2 +0.00,-200.00,700.00,4.64,2 +0.00,-200.00,700.00,3.28,2 +0.00,-200.00,600.00,3.14,9 +0.00,-200.00,600.00,1.78,9 +0.00,-200.00,600.00,0.42,9 +1729.04,-200.00,600.00,5.35,8 +1309.62,-200.00,600.00,3.99,8 +1294.85,-200.00,600.00,2.63,8 +1320.79,-200.00,600.00,1.27,7 +1306.70,-200.00,600.00,6.19,7 +0.00,-200.00,600.00,4.83,7 +2719.59,-200.00,600.00,3.47,6 +2711.86,-200.00,600.00,2.11,6 +2523.02,-200.00,600.00,0.75,6 +0.00,-200.00,600.00,5.67,5 +0.00,-200.00,600.00,4.31,5 +0.00,-200.00,600.00,2.95,5 +2539.52,-200.00,600.00,1.59,4 +0.00,-200.00,600.00,0.23,4 +3342.10,-200.00,600.00,5.16,4 +3328.35,-200.00,600.00,3.80,3 +3350.52,-200.00,600.00,2.44,3 +1075.09,-200.00,600.00,1.08,3 +0.00,-200.00,600.00,6.00,2 +0.00,-200.00,600.00,4.64,2 +0.00,-200.00,600.00,3.28,2 +0.00,-200.00,500.00,3.14,9 +0.00,-200.00,500.00,1.78,9 +1628.01,-200.00,500.00,0.42,9 +1336.77,-200.00,500.00,5.35,8 +1298.45,-200.00,500.00,3.99,8 +1288.66,-200.00,500.00,2.63,8 +1320.96,-200.00,500.00,1.27,7 +1331.96,-200.00,500.00,6.19,7 +0.00,-200.00,500.00,4.83,7 +2863.92,-200.00,500.00,3.47,6 +2552.41,-200.00,500.00,2.11,6 +2543.30,-200.00,500.00,0.75,6 +0.00,-200.00,500.00,5.67,5 +0.00,-200.00,500.00,4.31,5 +0.00,-200.00,500.00,2.95,5 +0.00,-200.00,500.00,1.59,4 +0.00,-200.00,500.00,0.23,4 +3353.61,-200.00,500.00,5.16,4 +1890.21,-200.00,500.00,3.80,3 +954.81,-200.00,500.00,2.44,3 +929.38,-200.00,500.00,1.08,3 +0.00,-200.00,500.00,6.00,2 +0.00,-200.00,500.00,4.64,2 +0.00,-200.00,500.00,3.28,2 +0.00,-200.00,400.00,3.14,9 +0.00,-200.00,400.00,1.78,9 +0.00,-200.00,400.00,0.42,9 +1507.04,-200.00,400.00,5.35,8 +0.00,-200.00,400.00,3.99,8 +0.00,-200.00,400.00,2.63,8 +0.00,-200.00,400.00,1.27,7 +0.00,-200.00,400.00,6.19,7 +0.00,-200.00,400.00,4.83,7 +3066.15,-200.00,400.00,3.47,6 +2734.36,-200.00,400.00,2.11,6 +2728.01,-200.00,400.00,0.75,6 +0.00,-200.00,400.00,5.67,5 +0.00,-200.00,400.00,4.31,5 +0.00,-200.00,400.00,2.95,5 +0.00,-200.00,400.00,1.59,4 +0.00,-200.00,400.00,0.23,4 +0.00,-200.00,400.00,5.16,4 +3409.11,-200.00,400.00,3.80,3 +898.11,-200.00,400.00,2.44,3 +842.27,-200.00,400.00,1.08,3 +0.00,-200.00,400.00,6.00,2 +0.00,-200.00,400.00,4.64,2 +0.00,-200.00,400.00,3.28,2 +0.00,-200.00,300.00,3.14,9 +0.00,-200.00,300.00,1.78,9 +0.00,-200.00,300.00,0.42,9 +1352.06,-200.00,300.00,5.35,8 +1721.82,-200.00,300.00,3.99,8 +1769.93,-200.00,300.00,2.63,8 +0.00,-200.00,300.00,1.27,7 +0.00,-200.00,300.00,6.19,7 +0.00,-200.00,300.00,4.83,7 +3189.86,-200.00,300.00,3.47,6 +2906.70,-200.00,300.00,2.11,6 +2896.39,-200.00,300.00,0.75,6 +0.00,-200.00,300.00,5.67,5 +0.00,-200.00,300.00,4.31,5 +0.00,-200.00,300.00,2.95,5 +0.00,-200.00,300.00,1.59,4 +0.00,-200.00,300.00,0.23,4 +3391.07,-200.00,300.00,5.16,4 +3397.94,-200.00,300.00,3.80,3 +960.82,-200.00,300.00,2.44,3 +966.84,-200.00,300.00,1.08,3 +0.00,-200.00,300.00,6.00,2 +0.00,-200.00,300.00,4.64,2 +0.00,-200.00,300.00,3.28,2 +0.00,-200.00,200.00,3.14,9 +0.00,-200.00,200.00,1.78,9 +0.00,-200.00,200.00,0.42,9 +1280.41,-200.00,200.00,5.35,8 +1690.38,-200.00,200.00,3.99,8 +0.00,-200.00,200.00,2.63,8 +0.00,-200.00,200.00,1.27,7 +0.00,-200.00,200.00,6.19,7 +0.00,-200.00,200.00,4.83,7 +3313.57,-200.00,200.00,3.47,6 +3056.87,-200.00,200.00,2.11,6 +3062.71,-200.00,200.00,0.75,6 +0.00,-200.00,200.00,5.67,5 +0.00,-200.00,200.00,4.31,5 +0.00,-200.00,200.00,2.95,5 +0.00,-200.00,200.00,1.59,4 +0.00,-200.00,200.00,0.23,4 +3432.99,-200.00,200.00,5.16,4 +2062.37,-200.00,200.00,3.80,3 +897.94,-200.00,200.00,2.44,3 +1434.54,-200.00,200.00,1.08,3 +0.00,-200.00,200.00,6.00,2 +0.00,-200.00,200.00,4.64,2 +0.00,-200.00,200.00,3.28,2 +0.00,-200.00,200.00,4.71,9 +0.00,-200.00,200.00,3.35,9 +3269.42,-200.00,200.00,1.99,9 +3026.98,-200.00,200.00,0.63,8 +3012.20,-200.00,200.00,5.56,8 +3042.78,-200.00,200.00,4.20,8 +3190.55,-200.00,200.00,2.84,7 +0.00,-200.00,200.00,1.48,7 +0.00,-200.00,200.00,0.12,7 +0.00,-200.00,200.00,5.04,6 +3446.56,-200.00,200.00,3.68,6 +1598.63,-200.00,200.00,2.32,6 +0.00,-200.00,200.00,0.96,5 +0.00,-200.00,200.00,5.88,5 +0.00,-200.00,200.00,4.52,5 +0.00,-200.00,200.00,3.16,4 +0.00,-200.00,200.00,1.80,4 +0.00,-200.00,200.00,0.44,4 +2833.33,-200.00,200.00,5.37,3 +0.00,-200.00,200.00,4.01,3 +1238.83,-200.00,200.00,2.65,3 +0.00,-200.00,200.00,1.29,2 +0.00,-200.00,200.00,6.22,2 +0.00,-200.00,200.00,4.86,2 +0.00,-100.00,200.00,4.71,9 +0.00,-100.00,200.00,3.35,9 +3148.63,-100.00,200.00,1.99,9 +2986.43,-100.00,200.00,0.63,8 +2963.75,-100.00,200.00,5.56,8 +3210.14,-100.00,200.00,4.20,8 +3185.57,-100.00,200.00,2.84,7 +0.00,-100.00,200.00,1.48,7 +0.00,-100.00,200.00,0.12,7 +0.00,-100.00,200.00,5.04,6 +0.00,-100.00,200.00,3.68,6 +1666.32,-100.00,200.00,2.32,6 +0.00,-100.00,200.00,0.96,5 +0.00,-100.00,200.00,5.88,5 +0.00,-100.00,200.00,4.52,5 +1517.18,-100.00,200.00,3.16,4 +0.00,-100.00,200.00,1.80,4 +0.00,-100.00,200.00,0.44,4 +0.00,-100.00,200.00,5.37,3 +1155.33,-100.00,200.00,4.01,3 +1151.72,-100.00,200.00,2.65,3 +0.00,-100.00,200.00,1.29,2 +0.00,-100.00,200.00,6.22,2 +0.00,-100.00,200.00,4.86,2 +0.00,0.00,200.00,4.71,9 +0.00,0.00,200.00,3.35,9 +0.00,0.00,200.00,1.99,9 +2881.61,0.00,200.00,0.63,8 +2873.88,0.00,200.00,5.56,8 +3145.36,0.00,200.00,4.20,8 +3185.74,0.00,200.00,2.84,7 +0.00,0.00,200.00,1.48,7 +0.00,0.00,200.00,0.12,7 +0.00,0.00,200.00,5.04,6 +3783.51,0.00,200.00,3.68,6 +3777.66,0.00,200.00,2.32,6 +0.00,0.00,200.00,0.96,5 +0.00,0.00,200.00,5.88,5 +0.00,0.00,200.00,4.52,5 +0.00,0.00,200.00,3.16,4 +0.00,0.00,200.00,1.80,4 +0.00,0.00,200.00,0.44,4 +1106.87,0.00,200.00,5.37,3 +1029.38,0.00,200.00,4.01,3 +915.12,0.00,200.00,2.65,3 +0.00,0.00,200.00,1.29,2 +0.00,0.00,200.00,6.22,2 +0.00,0.00,200.00,4.86,2 +0.00,100.00,200.00,4.71,9 +0.00,100.00,200.00,3.35,9 +2828.01,100.00,200.00,1.99,9 +2788.32,100.00,200.00,0.63,8 +2786.08,100.00,200.00,5.56,8 +2797.77,100.00,200.00,4.20,8 +3158.76,100.00,200.00,2.84,7 +0.00,100.00,200.00,1.48,7 +0.00,100.00,200.00,0.12,7 +0.00,100.00,200.00,5.04,6 +0.00,100.00,200.00,3.68,6 +0.00,100.00,200.00,2.32,6 +0.00,100.00,200.00,0.96,5 +0.00,100.00,200.00,5.88,5 +0.00,100.00,200.00,4.52,5 +0.00,100.00,200.00,3.16,4 +0.00,100.00,200.00,1.80,4 +0.00,100.00,200.00,0.44,4 +983.51,100.00,200.00,5.37,3 +970.62,100.00,200.00,4.01,3 +1182.13,100.00,200.00,2.65,3 +0.00,100.00,200.00,1.29,2 +0.00,100.00,200.00,6.22,2 +0.00,100.00,200.00,4.86,2 +0.00,200.00,200.00,4.71,9 +0.00,200.00,200.00,3.35,9 +2744.85,200.00,200.00,1.99,9 +2692.61,200.00,200.00,0.63,8 +2680.41,200.00,200.00,5.56,8 +3163.92,200.00,200.00,4.20,8 +0.00,200.00,200.00,2.84,7 +0.00,200.00,200.00,1.48,7 +0.00,200.00,200.00,0.12,7 +0.00,200.00,200.00,5.04,6 +0.00,200.00,200.00,3.68,6 +0.00,200.00,200.00,2.32,6 +0.00,200.00,200.00,0.96,5 +0.00,200.00,200.00,5.88,5 +0.00,200.00,200.00,4.52,5 +0.00,200.00,200.00,3.16,4 +0.00,200.00,200.00,1.80,4 +0.00,200.00,200.00,0.44,4 +939.86,200.00,200.00,5.37,3 +934.02,200.00,200.00,4.01,3 +961.51,200.00,200.00,2.65,3 +0.00,200.00,200.00,1.29,2 +0.00,200.00,200.00,6.22,2 +0.00,200.00,200.00,4.86,2 +0.00,300.00,200.00,4.71,9 +0.00,300.00,200.00,3.35,9 +0.00,300.00,200.00,1.99,9 +2597.08,300.00,200.00,0.63,8 +2596.22,300.00,200.00,5.56,8 +3158.76,300.00,200.00,4.20,8 +0.00,300.00,200.00,2.84,7 +0.00,300.00,200.00,1.48,7 +0.00,300.00,200.00,0.12,7 +0.00,300.00,200.00,5.04,6 +0.00,300.00,200.00,3.68,6 +0.00,300.00,200.00,2.32,6 +0.00,300.00,200.00,0.96,5 +0.00,300.00,200.00,5.88,5 +0.00,300.00,200.00,4.52,5 +0.00,300.00,200.00,3.16,4 +0.00,300.00,200.00,1.80,4 +1001.20,300.00,200.00,0.44,4 +934.36,300.00,200.00,5.37,3 +919.76,300.00,200.00,4.01,3 +908.08,300.00,200.00,2.65,3 +953.61,300.00,200.00,1.29,2 +0.00,300.00,200.00,6.22,2 +0.00,300.00,200.00,4.86,2 +0.00,400.00,200.00,4.71,9 +0.00,400.00,200.00,3.35,9 +2513.40,400.00,200.00,1.99,9 +2515.12,400.00,200.00,0.63,8 +2506.01,400.00,200.00,5.56,8 +3168.73,400.00,200.00,4.20,8 +3195.70,400.00,200.00,2.84,7 +3192.10,400.00,200.00,1.48,7 +0.00,400.00,200.00,0.12,7 +0.00,400.00,200.00,5.04,6 +0.00,400.00,200.00,3.68,6 +0.00,400.00,200.00,2.32,6 +0.00,400.00,200.00,0.96,5 +0.00,400.00,200.00,5.88,5 +0.00,400.00,200.00,4.52,5 +0.00,400.00,200.00,3.16,4 +0.00,400.00,200.00,1.80,4 +965.64,400.00,200.00,0.44,4 +936.25,400.00,200.00,5.37,3 +888.83,400.00,200.00,4.01,3 +249.83,400.00,200.00,2.65,3 +0.00,400.00,200.00,1.29,2 +255.50,400.00,200.00,6.22,2 +0.00,400.00,200.00,4.86,2 +3152.92,400.00,200.00,0.00,9 +0.00,400.00,200.00,4.92,9 +0.00,400.00,200.00,3.56,9 +0.00,400.00,200.00,2.20,8 +0.00,400.00,200.00,0.84,8 +2336.94,400.00,200.00,5.77,8 +0.00,400.00,200.00,4.41,7 +0.00,400.00,200.00,3.05,7 +0.00,400.00,200.00,1.69,7 +2879.55,400.00,200.00,0.33,6 +2874.91,400.00,200.00,5.25,6 +0.00,400.00,200.00,3.89,6 +0.00,400.00,200.00,2.53,5 +0.00,400.00,200.00,1.17,5 +0.00,400.00,200.00,6.10,5 +274.05,400.00,200.00,4.74,4 +277.49,400.00,200.00,3.38,4 +0.00,400.00,200.00,2.02,4 +0.00,400.00,200.00,0.66,3 +1550.52,400.00,200.00,5.58,3 +1559.79,400.00,200.00,4.22,3 +0.00,400.00,200.00,2.86,2 +0.00,400.00,200.00,1.50,2 +0.00,400.00,200.00,0.14,2 +0.00,400.00,200.00,1.57,9 +0.00,400.00,200.00,0.21,9 +0.00,400.00,200.00,5.13,9 +1162.37,400.00,200.00,3.77,8 +0.00,400.00,200.00,2.41,8 +0.00,400.00,200.00,1.06,8 +0.00,400.00,200.00,5.98,7 +304.64,400.00,200.00,4.62,7 +285.91,400.00,200.00,3.26,7 +286.43,400.00,200.00,1.90,6 +0.00,400.00,200.00,0.54,6 +0.00,400.00,200.00,5.46,6 +0.00,400.00,200.00,4.10,5 +0.00,400.00,200.00,2.74,5 +0.00,400.00,200.00,1.38,5 +2527.49,400.00,200.00,0.02,4 +3169.59,400.00,200.00,4.95,4 +3201.20,400.00,200.00,3.59,4 +0.00,400.00,200.00,2.23,3 +0.00,400.00,200.00,0.87,3 +0.00,400.00,200.00,5.79,3 +0.00,400.00,200.00,4.43,2 +0.00,400.00,200.00,3.07,2 +0.00,400.00,200.00,1.71,2 +0.00,300.00,200.00,1.57,9 +0.00,300.00,200.00,0.21,9 +0.00,300.00,200.00,5.13,9 +928.69,300.00,200.00,3.77,8 +0.00,300.00,200.00,2.41,8 +895.70,300.00,200.00,1.06,8 +0.00,300.00,200.00,5.98,7 +0.00,300.00,200.00,4.62,7 +0.00,300.00,200.00,3.26,7 +0.00,300.00,200.00,1.90,6 +0.00,300.00,200.00,0.54,6 +0.00,300.00,200.00,5.46,6 +0.00,300.00,200.00,4.10,5 +0.00,300.00,200.00,2.74,5 +0.00,300.00,200.00,1.38,5 +2693.13,300.00,200.00,0.02,4 +3252.06,300.00,200.00,4.95,4 +0.00,300.00,200.00,3.59,4 +0.00,300.00,200.00,2.23,3 +0.00,300.00,200.00,0.87,3 +0.00,300.00,200.00,5.79,3 +0.00,300.00,200.00,4.43,2 +0.00,300.00,200.00,3.07,2 +0.00,300.00,200.00,1.71,2 +0.00,200.00,200.00,1.57,9 +0.00,200.00,200.00,0.21,9 +0.00,200.00,200.00,5.13,9 +0.00,200.00,200.00,3.77,8 +0.00,200.00,200.00,2.41,8 +0.00,200.00,200.00,1.06,8 +0.00,200.00,200.00,5.98,7 +0.00,200.00,200.00,4.62,7 +0.00,200.00,200.00,3.26,7 +0.00,200.00,200.00,1.90,6 +0.00,200.00,200.00,0.54,6 +0.00,200.00,200.00,5.46,6 +0.00,200.00,200.00,4.10,5 +0.00,200.00,200.00,2.74,5 +0.00,200.00,200.00,1.38,5 +2868.21,200.00,200.00,0.02,4 +0.00,200.00,200.00,4.95,4 +0.00,200.00,200.00,3.59,4 +0.00,200.00,200.00,2.23,3 +0.00,200.00,200.00,0.87,3 +0.00,200.00,200.00,5.79,3 +0.00,200.00,200.00,4.43,2 +0.00,200.00,200.00,3.07,2 +0.00,200.00,200.00,1.71,2 +0.00,100.00,200.00,1.57,9 +0.00,100.00,200.00,0.21,9 +0.00,100.00,200.00,5.13,9 +0.00,100.00,200.00,3.77,8 +728.52,100.00,200.00,2.41,8 +1039.00,100.00,200.00,1.06,8 +0.00,100.00,200.00,5.98,7 +0.00,100.00,200.00,4.62,7 +0.00,100.00,200.00,3.26,7 +0.00,100.00,200.00,1.90,6 +0.00,100.00,200.00,0.54,6 +0.00,100.00,200.00,5.46,6 +0.00,100.00,200.00,4.10,5 +0.00,100.00,200.00,2.74,5 +0.00,100.00,200.00,1.38,5 +3014.78,100.00,200.00,0.02,4 +0.00,100.00,200.00,4.95,4 +0.00,100.00,200.00,3.59,4 +0.00,100.00,200.00,2.23,3 +0.00,100.00,200.00,0.87,3 +1521.82,100.00,200.00,5.79,3 +0.00,100.00,200.00,4.43,2 +0.00,100.00,200.00,3.07,2 +0.00,100.00,200.00,1.71,2 +0.00,0.00,200.00,1.57,9 +0.00,0.00,200.00,0.21,9 +0.00,0.00,200.00,5.13,9 +0.00,0.00,200.00,3.77,8 +0.00,0.00,200.00,2.41,8 +664.26,0.00,200.00,1.06,8 +0.00,0.00,200.00,5.98,7 +0.00,0.00,200.00,4.62,7 +0.00,0.00,200.00,3.26,7 +0.00,0.00,200.00,1.90,6 +0.00,0.00,200.00,0.54,6 +0.00,0.00,200.00,5.46,6 +0.00,0.00,200.00,4.10,5 +0.00,0.00,200.00,2.74,5 +0.00,0.00,200.00,1.38,5 +0.00,0.00,200.00,0.02,4 +0.00,0.00,200.00,4.95,4 +0.00,0.00,200.00,3.59,4 +0.00,0.00,200.00,2.23,3 +1390.89,0.00,200.00,0.87,3 +1413.92,0.00,200.00,5.79,3 +0.00,0.00,200.00,4.43,2 +0.00,0.00,200.00,3.07,2 +0.00,0.00,200.00,1.71,2 +0.00,-100.00,200.00,1.57,9 +0.00,-100.00,200.00,0.21,9 +2267.35,-100.00,200.00,5.13,9 +2215.12,-100.00,200.00,3.77,8 +635.22,-100.00,200.00,2.41,8 +0.00,-100.00,200.00,1.06,8 +0.00,-100.00,200.00,5.98,7 +0.00,-100.00,200.00,4.62,7 +0.00,-100.00,200.00,3.26,7 +0.00,-100.00,200.00,1.90,6 +0.00,-100.00,200.00,0.54,6 +0.00,-100.00,200.00,5.46,6 +0.00,-100.00,200.00,4.10,5 +0.00,-100.00,200.00,2.74,5 +0.00,-100.00,200.00,1.38,5 +0.00,-100.00,200.00,0.02,4 +0.00,-100.00,200.00,4.95,4 +0.00,-100.00,200.00,3.59,4 +4077.49,-100.00,200.00,2.23,3 +1322.68,-100.00,200.00,0.87,3 +1522.34,-100.00,200.00,5.79,3 +0.00,-100.00,200.00,4.43,2 +0.00,-100.00,200.00,3.07,2 +0.00,-100.00,200.00,1.71,2 +0.00,-200.00,200.00,1.57,9 +0.00,-200.00,200.00,0.21,9 +2095.53,-200.00,200.00,5.13,9 +2111.68,-200.00,200.00,3.77,8 +2103.61,-200.00,200.00,2.41,8 +0.00,-200.00,200.00,1.06,8 +0.00,-200.00,200.00,5.98,7 +0.00,-200.00,200.00,4.62,7 +0.00,-200.00,200.00,3.26,7 +0.00,-200.00,200.00,1.90,6 +1693.47,-200.00,200.00,0.54,6 +0.00,-200.00,200.00,5.46,6 +0.00,-200.00,200.00,4.10,5 +0.00,-200.00,200.00,2.74,5 +0.00,-200.00,200.00,1.38,5 +0.00,-200.00,200.00,0.02,4 +0.00,-200.00,200.00,4.95,4 +0.00,-200.00,200.00,3.59,4 +0.00,-200.00,200.00,2.23,3 +1557.90,-200.00,200.00,0.87,3 +2014.60,-200.00,200.00,5.79,3 +0.00,-200.00,200.00,4.43,2 +0.00,-200.00,200.00,3.07,2 +0.00,-200.00,200.00,1.71,2 +0.00,-200.00,200.00,3.14,9 +1054.47,-200.00,200.00,1.78,9 +1110.65,-200.00,200.00,0.42,9 +1437.46,-200.00,200.00,5.35,8 +0.00,-200.00,200.00,3.99,8 +3467.87,-200.00,200.00,2.63,8 +0.00,-200.00,200.00,1.27,7 +3501.20,-200.00,200.00,6.19,7 +0.00,-200.00,200.00,4.83,7 +0.00,-200.00,200.00,3.47,6 +0.00,-200.00,200.00,2.11,6 +0.00,-200.00,200.00,0.75,6 +0.00,-200.00,200.00,5.67,5 +0.00,-200.00,200.00,4.31,5 +0.00,-200.00,200.00,2.95,5 +0.00,-200.00,200.00,1.59,4 +0.00,-200.00,200.00,0.23,4 +0.00,-200.00,200.00,5.16,4 +0.00,-200.00,200.00,3.80,3 +2075.43,-200.00,200.00,2.44,3 +2067.70,-200.00,200.00,1.08,3 +2072.68,-200.00,200.00,6.00,2 +0.00,-200.00,200.00,4.64,2 +0.00,-200.00,200.00,3.28,2 +3445.19,-200.00,200.00,4.71,9 +0.00,-200.00,200.00,3.35,9 +0.00,-200.00,200.00,1.99,9 +0.00,-200.00,200.00,0.63,8 +0.00,-200.00,200.00,5.56,8 +1269.93,-200.00,200.00,4.20,8 +0.00,-200.00,200.00,2.84,7 +0.00,-200.00,200.00,1.48,7 +0.00,-200.00,200.00,0.12,7 +0.00,-200.00,200.00,5.04,6 +0.00,-200.00,200.00,3.68,6 +0.00,-200.00,200.00,2.32,6 +0.00,-200.00,200.00,0.96,5 +0.00,-200.00,200.00,5.88,5 +0.00,-200.00,200.00,4.52,5 +0.00,-200.00,200.00,3.16,4 +0.00,-200.00,200.00,1.80,4 +0.00,-200.00,200.00,0.44,4 +737.80,-200.00,200.00,5.37,3 +0.00,-200.00,200.00,4.01,3 +0.00,-200.00,200.00,2.65,3 +0.00,-200.00,200.00,1.29,2 +0.00,-200.00,200.00,6.22,2 +0.00,-200.00,200.00,4.86,2 +0.00,-200.00,200.00,0.00,9 +0.00,-200.00,200.00,4.92,9 +0.00,-200.00,200.00,3.56,9 +0.00,-200.00,200.00,2.20,8 +0.00,-200.00,200.00,0.84,8 +2120.27,-200.00,200.00,5.77,8 +2123.20,-200.00,200.00,4.41,7 +2121.99,-200.00,200.00,3.05,7 +0.00,-200.00,200.00,1.69,7 +0.00,-200.00,200.00,0.33,6 +0.00,-200.00,200.00,5.25,6 +1131.27,-200.00,200.00,3.89,6 +0.00,-200.00,200.00,2.53,5 +0.00,-200.00,200.00,1.17,5 +0.00,-200.00,200.00,6.10,5 +0.00,-200.00,200.00,4.74,4 +0.00,-200.00,200.00,3.38,4 +3475.60,-200.00,200.00,2.02,4 +3794.16,-200.00,200.00,0.66,3 +0.00,-200.00,200.00,5.58,3 +0.00,-200.00,200.00,4.22,3 +0.00,-200.00,200.00,2.86,2 +0.00,-200.00,200.00,1.50,2 +0.00,-200.00,200.00,0.14,2 +1243.64,-200.00,300.00,0.00,9 +0.00,-200.00,300.00,4.92,9 +0.00,-200.00,300.00,3.56,9 +0.00,-200.00,300.00,2.20,8 +0.00,-200.00,300.00,0.84,8 +1107.04,-200.00,300.00,5.77,8 +2151.89,-200.00,300.00,4.41,7 +1131.27,-200.00,300.00,3.05,7 +0.00,-200.00,300.00,1.69,7 +735.05,-200.00,300.00,0.33,6 +1265.12,-200.00,300.00,5.25,6 +1251.03,-200.00,300.00,3.89,6 +0.00,-200.00,300.00,2.53,5 +0.00,-200.00,300.00,1.17,5 +0.00,-200.00,300.00,6.10,5 +0.00,-200.00,300.00,4.74,4 +3654.47,-200.00,300.00,3.38,4 +3524.57,-200.00,300.00,2.02,4 +3789.52,-200.00,300.00,0.66,3 +0.00,-200.00,300.00,5.58,3 +0.00,-200.00,300.00,4.22,3 +0.00,-200.00,300.00,2.86,2 +0.00,-200.00,300.00,1.50,2 +0.00,-200.00,300.00,0.14,2 +1076.29,-200.00,300.00,1.57,9 +0.00,-200.00,300.00,0.21,9 +712.37,-200.00,300.00,5.13,9 +697.77,-200.00,300.00,3.77,8 +1269.76,-200.00,300.00,2.41,8 +0.00,-200.00,300.00,1.06,8 +0.00,-200.00,300.00,5.98,7 +0.00,-200.00,300.00,4.62,7 +0.00,-200.00,300.00,3.26,7 +3625.60,-200.00,300.00,1.90,6 +3544.85,-200.00,300.00,0.54,6 +3844.33,-200.00,300.00,5.46,6 +0.00,-200.00,300.00,4.10,5 +0.00,-200.00,300.00,2.74,5 +0.00,-200.00,300.00,1.38,5 +0.00,-200.00,300.00,0.02,4 +1261.17,-200.00,300.00,4.95,4 +1628.52,-200.00,300.00,3.59,4 +1285.40,-200.00,300.00,2.23,3 +0.00,-200.00,300.00,0.87,3 +0.00,-200.00,300.00,5.79,3 +0.00,-200.00,300.00,4.43,2 +0.00,-200.00,300.00,3.07,2 +0.00,-200.00,300.00,1.71,2 +0.00,-200.00,300.00,3.14,9 +0.00,-200.00,300.00,1.78,9 +0.00,-200.00,300.00,0.42,9 +3523.71,-200.00,300.00,5.35,8 +3791.75,-200.00,300.00,3.99,8 +0.00,-200.00,300.00,2.63,8 +0.00,-200.00,300.00,1.27,7 +0.00,-200.00,300.00,6.19,7 +0.00,-200.00,300.00,4.83,7 +1641.07,-200.00,300.00,3.47,6 +1406.87,-200.00,300.00,2.11,6 +1426.46,-200.00,300.00,0.75,6 +0.00,-200.00,300.00,5.67,5 +0.00,-200.00,300.00,4.31,5 +0.00,-200.00,300.00,2.95,5 +0.00,-200.00,300.00,1.59,4 +0.00,-200.00,300.00,0.23,4 +2208.76,-200.00,300.00,5.16,4 +1218.56,-200.00,300.00,3.80,3 +0.00,-200.00,300.00,2.44,3 +885.91,-200.00,300.00,1.08,3 +0.00,-200.00,300.00,6.00,2 +0.00,-200.00,300.00,4.64,2 +0.00,-200.00,300.00,3.28,2 +0.00,-200.00,200.00,3.14,9 +0.00,-200.00,200.00,1.78,9 +3358.93,-200.00,200.00,0.42,9 +3336.25,-200.00,200.00,5.35,8 +0.00,-200.00,200.00,3.99,8 +0.00,-200.00,200.00,2.63,8 +0.00,-200.00,200.00,1.27,7 +0.00,-200.00,200.00,6.19,7 +0.00,-200.00,200.00,4.83,7 +1305.67,-200.00,200.00,3.47,6 +1619.59,-200.00,200.00,2.11,6 +0.00,-200.00,200.00,0.75,6 +0.00,-200.00,200.00,5.67,5 +0.00,-200.00,200.00,4.31,5 +0.00,-200.00,200.00,2.95,5 +0.00,-200.00,200.00,1.59,4 +2230.41,-200.00,200.00,0.23,4 +2230.41,-200.00,200.00,5.16,4 +619.24,-200.00,200.00,3.80,3 +1045.70,-200.00,200.00,2.44,3 +1047.42,-200.00,200.00,1.08,3 +0.00,-200.00,200.00,6.00,2 +0.00,-200.00,200.00,4.64,2 +0.00,-200.00,200.00,3.28,2 +0.00,-200.00,100.00,3.14,9 +3271.48,-200.00,100.00,1.78,9 +3250.52,-200.00,100.00,0.42,9 +3218.56,-200.00,100.00,5.35,8 +3644.67,-200.00,100.00,3.99,8 +0.00,-200.00,100.00,2.63,8 +0.00,-200.00,100.00,1.27,7 +0.00,-200.00,100.00,6.19,7 +0.00,-200.00,100.00,4.83,7 +1407.39,-200.00,100.00,3.47,6 +0.00,-200.00,100.00,2.11,6 +2167.35,-200.00,100.00,0.75,6 +0.00,-200.00,100.00,5.67,5 +0.00,-200.00,100.00,4.31,5 +0.00,-200.00,100.00,2.95,5 +0.00,-200.00,100.00,1.59,4 +2345.19,-200.00,100.00,0.23,4 +0.00,-200.00,100.00,5.16,4 +542.27,-200.00,100.00,3.80,3 +959.97,-200.00,100.00,2.44,3 +920.45,-200.00,100.00,1.08,3 +0.00,-200.00,100.00,6.00,2 +0.00,-200.00,100.00,4.64,2 +0.00,-200.00,100.00,3.28,2 +1228.69,-200.00,0.00,3.14,9 +0.00,-200.00,0.00,1.78,9 +0.00,-200.00,0.00,0.42,9 +0.00,-200.00,0.00,5.35,8 +0.00,-200.00,0.00,3.99,8 +0.00,-200.00,0.00,2.63,8 +0.00,-200.00,0.00,1.27,7 +0.00,-200.00,0.00,6.19,7 +0.00,-200.00,0.00,4.83,7 +0.00,-200.00,0.00,3.47,6 +0.00,-200.00,0.00,2.11,6 +0.00,-200.00,0.00,0.75,6 +0.00,-200.00,0.00,5.67,5 +0.00,-200.00,0.00,4.31,5 +0.00,-200.00,0.00,2.95,5 +0.00,-200.00,0.00,1.59,4 +0.00,-200.00,0.00,0.23,4 +0.00,-200.00,0.00,5.16,4 +553.26,-200.00,0.00,3.80,3 +854.30,-200.00,0.00,2.44,3 +849.48,-200.00,0.00,1.08,3 +0.00,-200.00,0.00,6.00,2 +0.00,-200.00,0.00,4.64,2 +0.00,-200.00,0.00,3.28,2 +0.00,-200.00,0.00,4.71,9 +0.00,-200.00,0.00,3.35,9 +0.00,-200.00,0.00,1.99,9 +1493.13,-200.00,0.00,0.63,8 +0.00,-200.00,0.00,5.56,8 +0.00,-200.00,0.00,4.20,8 +0.00,-200.00,0.00,2.84,7 +0.00,-200.00,0.00,1.48,7 +0.00,-200.00,0.00,0.12,7 +0.00,-200.00,0.00,5.04,6 +622.85,-200.00,0.00,3.68,6 +620.10,-200.00,0.00,2.32,6 +0.00,-200.00,0.00,0.96,5 +0.00,-200.00,0.00,5.88,5 +0.00,-200.00,0.00,4.52,5 +966.49,-200.00,0.00,3.16,4 +0.00,-200.00,0.00,1.80,4 +0.00,-200.00,0.00,0.44,4 +0.00,-200.00,0.00,5.37,3 +3094.50,-200.00,0.00,4.01,3 +3088.14,-200.00,0.00,2.65,3 +0.00,-200.00,0.00,1.29,2 +0.00,-200.00,0.00,6.22,2 +0.00,-200.00,0.00,4.86,2 +0.00,-100.00,0.00,4.71,9 +0.00,-100.00,0.00,3.35,9 +0.00,-100.00,0.00,1.99,9 +0.00,-100.00,0.00,0.63,8 +1801.37,-100.00,0.00,5.56,8 +0.00,-100.00,0.00,4.20,8 +0.00,-100.00,0.00,2.84,7 +0.00,-100.00,0.00,1.48,7 +0.00,-100.00,0.00,0.12,7 +0.00,-100.00,0.00,5.04,6 +0.00,-100.00,0.00,3.68,6 +760.31,-100.00,0.00,2.32,6 +1071.13,-100.00,0.00,0.96,5 +1044.33,-100.00,0.00,5.88,5 +0.00,-100.00,0.00,4.52,5 +1085.05,-100.00,0.00,3.16,4 +0.00,-100.00,0.00,1.80,4 +0.00,-100.00,0.00,0.44,4 +3115.29,-100.00,0.00,5.37,3 +3007.73,-100.00,0.00,4.01,3 +3016.32,-100.00,0.00,2.65,3 +3044.33,-100.00,0.00,1.29,2 +0.00,-100.00,0.00,6.22,2 +0.00,-100.00,0.00,4.86,2 +0.00,0.00,0.00,4.71,9 +0.00,0.00,0.00,3.35,9 +0.00,0.00,0.00,1.99,9 +2077.83,0.00,0.00,0.63,8 +1648.28,0.00,0.00,5.56,8 +0.00,0.00,0.00,4.20,8 +0.00,0.00,0.00,2.84,7 +0.00,0.00,0.00,1.48,7 +0.00,0.00,0.00,0.12,7 +0.00,0.00,0.00,5.04,6 +0.00,0.00,0.00,3.68,6 +0.00,0.00,0.00,2.32,6 +0.00,0.00,0.00,0.96,5 +0.00,0.00,0.00,5.88,5 +0.00,0.00,0.00,4.52,5 +0.00,0.00,0.00,3.16,4 +0.00,0.00,0.00,1.80,4 +0.00,0.00,0.00,0.44,4 +2976.46,0.00,0.00,5.37,3 +2930.93,0.00,0.00,4.01,3 +2939.17,0.00,0.00,2.65,3 +0.00,0.00,0.00,1.29,2 +0.00,0.00,0.00,6.22,2 +0.00,0.00,0.00,4.86,2 +0.00,100.00,0.00,4.71,9 +3692.96,100.00,0.00,3.35,9 +0.00,100.00,0.00,1.99,9 +1364.60,100.00,0.00,0.63,8 +1381.44,100.00,0.00,5.56,8 +0.00,100.00,0.00,4.20,8 +0.00,100.00,0.00,2.84,7 +0.00,100.00,0.00,1.48,7 +0.00,100.00,0.00,0.12,7 +0.00,100.00,0.00,5.04,6 +0.00,100.00,0.00,3.68,6 +1111.68,100.00,0.00,2.32,6 +0.00,100.00,0.00,0.96,5 +0.00,100.00,0.00,5.88,5 +0.00,100.00,0.00,4.52,5 +0.00,100.00,0.00,3.16,4 +0.00,100.00,0.00,1.80,4 +0.00,100.00,0.00,0.44,4 +2898.63,100.00,0.00,5.37,3 +3036.08,100.00,0.00,4.01,3 +2897.42,100.00,0.00,2.65,3 +0.00,100.00,0.00,1.29,2 +0.00,100.00,0.00,6.22,2 +0.00,100.00,0.00,4.86,2 +0.00,200.00,0.00,4.71,9 +3528.69,200.00,0.00,3.35,9 +0.00,200.00,0.00,1.99,9 +1686.60,200.00,0.00,0.63,8 +1591.75,200.00,0.00,5.56,8 +1720.27,200.00,0.00,4.20,8 +0.00,200.00,0.00,2.84,7 +0.00,200.00,0.00,1.48,7 +0.00,200.00,0.00,0.12,7 +0.00,200.00,0.00,5.04,6 +0.00,200.00,0.00,3.68,6 +1293.30,200.00,0.00,2.32,6 +0.00,200.00,0.00,0.96,5 +0.00,200.00,0.00,5.88,5 +0.00,200.00,0.00,4.52,5 +0.00,200.00,0.00,3.16,4 +0.00,200.00,0.00,1.80,4 +0.00,200.00,0.00,0.44,4 +3020.62,200.00,0.00,5.37,3 +2807.56,200.00,0.00,4.01,3 +2806.70,200.00,0.00,2.65,3 +2995.53,200.00,0.00,1.29,2 +0.00,200.00,0.00,6.22,2 +0.00,200.00,0.00,4.86,2 +0.00,300.00,0.00,4.71,9 +3393.81,300.00,0.00,3.35,9 +0.00,300.00,0.00,1.99,9 +0.00,300.00,0.00,0.63,8 +1205.84,300.00,0.00,5.56,8 +1224.57,300.00,0.00,4.20,8 +0.00,300.00,0.00,2.84,7 +0.00,300.00,0.00,1.48,7 +0.00,300.00,0.00,0.12,7 +0.00,300.00,0.00,5.04,6 +0.00,300.00,0.00,3.68,6 +0.00,300.00,0.00,2.32,6 +0.00,300.00,0.00,0.96,5 +0.00,300.00,0.00,5.88,5 +0.00,300.00,0.00,4.52,5 +0.00,300.00,0.00,3.16,4 +0.00,300.00,0.00,1.80,4 +0.00,300.00,0.00,0.44,4 +2747.25,300.00,0.00,5.37,3 +2749.14,300.00,0.00,4.01,3 +2883.33,300.00,0.00,2.65,3 +0.00,300.00,0.00,1.29,2 +0.00,300.00,0.00,6.22,2 +0.00,300.00,0.00,4.86,2 +0.00,400.00,0.00,4.71,9 +0.00,400.00,0.00,3.35,9 +1493.99,400.00,0.00,1.99,9 +1493.81,400.00,0.00,0.63,8 +0.00,400.00,0.00,5.56,8 +1238.83,400.00,0.00,4.20,8 +1614.26,400.00,0.00,2.84,7 +0.00,400.00,0.00,1.48,7 +0.00,400.00,0.00,0.12,7 +0.00,400.00,0.00,5.04,6 +1659.97,400.00,0.00,3.68,6 +1647.59,400.00,0.00,2.32,6 +0.00,400.00,0.00,0.96,5 +0.00,400.00,0.00,5.88,5 +0.00,400.00,0.00,4.52,5 +1468.38,400.00,0.00,3.16,4 +0.00,400.00,0.00,1.80,4 +0.00,400.00,0.00,0.44,4 +2678.35,400.00,0.00,5.37,3 +2683.68,400.00,0.00,4.01,3 +2770.27,400.00,0.00,2.65,3 +2782.82,400.00,0.00,1.29,2 +0.00,400.00,0.00,6.22,2 +0.00,400.00,0.00,4.86,2 +1606.53,400.00,0.00,0.00,9 +0.00,400.00,0.00,4.92,9 +0.00,400.00,0.00,3.56,9 +0.00,400.00,0.00,2.20,8 +1614.95,400.00,0.00,0.84,8 +0.00,400.00,0.00,5.77,8 +0.00,400.00,0.00,4.41,7 +0.00,400.00,0.00,3.05,7 +0.00,400.00,0.00,1.69,7 +0.00,400.00,0.00,0.33,6 +0.00,400.00,0.00,5.25,6 +2713.06,400.00,0.00,3.89,6 +0.00,400.00,0.00,2.53,5 +0.00,400.00,0.00,1.17,5 +0.00,400.00,0.00,6.10,5 +2818.73,400.00,0.00,4.74,4 +0.00,400.00,0.00,3.38,4 +2068.56,400.00,0.00,2.02,4 +2082.99,400.00,0.00,0.66,3 +1469.07,400.00,0.00,5.58,3 +1440.38,400.00,0.00,4.22,3 +0.00,400.00,0.00,2.86,2 +0.00,400.00,0.00,1.50,2 +0.00,400.00,0.00,0.14,2 +0.00,400.00,0.00,1.57,9 +0.00,400.00,0.00,0.21,9 +0.00,400.00,0.00,5.13,9 +0.00,400.00,0.00,3.77,8 +3057.56,400.00,0.00,2.41,8 +2672.85,400.00,0.00,1.06,8 +2691.92,400.00,0.00,5.98,7 +2716.15,400.00,0.00,4.62,7 +0.00,400.00,0.00,3.26,7 +0.00,400.00,0.00,1.90,6 +2087.11,400.00,0.00,0.54,6 +2080.93,400.00,0.00,5.46,6 +0.00,400.00,0.00,4.10,5 +0.00,400.00,0.00,2.74,5 +0.00,400.00,0.00,1.38,5 +1521.31,400.00,0.00,0.02,4 +1517.35,400.00,0.00,4.95,4 +0.00,400.00,0.00,3.59,4 +0.00,400.00,0.00,2.23,3 +0.00,400.00,0.00,0.87,3 +1645.36,400.00,0.00,5.79,3 +0.00,400.00,0.00,4.43,2 +0.00,400.00,0.00,3.07,2 +0.00,400.00,0.00,1.71,2 +1242.96,300.00,0.00,1.57,9 +1267.70,300.00,0.00,0.21,9 +0.00,300.00,0.00,5.13,9 +2960.82,300.00,0.00,3.77,8 +2677.83,300.00,0.00,2.41,8 +2666.84,300.00,0.00,1.06,8 +2678.18,300.00,0.00,5.98,7 +2706.01,300.00,0.00,4.62,7 +0.00,300.00,0.00,3.26,7 +0.00,300.00,0.00,1.90,6 +0.00,300.00,0.00,0.54,6 +2269.59,300.00,0.00,5.46,6 +0.00,300.00,0.00,4.10,5 +0.00,300.00,0.00,2.74,5 +0.00,300.00,0.00,1.38,5 +788.83,300.00,0.00,0.02,4 +0.00,300.00,0.00,4.95,4 +0.00,300.00,0.00,3.59,4 +0.00,300.00,0.00,2.23,3 +0.00,300.00,0.00,0.87,3 +1466.49,300.00,0.00,5.79,3 +0.00,300.00,0.00,4.43,2 +0.00,300.00,0.00,3.07,2 +0.00,300.00,0.00,1.71,2 +2655.67,300.00,0.00,3.14,9 +2819.76,300.00,0.00,1.78,9 +0.00,300.00,0.00,0.42,9 +0.00,300.00,0.00,5.35,8 +3389.35,300.00,0.00,3.99,8 +1695.19,300.00,0.00,2.63,8 +0.00,300.00,0.00,1.27,7 +0.00,300.00,0.00,6.19,7 +1677.66,300.00,0.00,4.83,7 +1288.49,300.00,0.00,3.47,6 +0.00,300.00,0.00,2.11,6 +0.00,300.00,0.00,0.75,6 +0.00,300.00,0.00,5.67,5 +0.00,300.00,0.00,4.31,5 +0.00,300.00,0.00,2.95,5 +1488.32,300.00,0.00,1.59,4 +0.00,300.00,0.00,0.23,4 +1265.98,300.00,0.00,5.16,4 +1264.95,300.00,0.00,3.80,3 +0.00,300.00,0.00,2.44,3 +2947.59,300.00,0.00,1.08,3 +0.00,300.00,0.00,6.00,2 +0.00,300.00,0.00,4.64,2 +2646.22,300.00,0.00,3.28,2 +0.00,300.00,0.00,4.71,9 +0.00,300.00,0.00,3.35,9 +0.00,300.00,0.00,1.99,9 +0.00,300.00,0.00,0.63,8 +0.00,300.00,0.00,5.56,8 +0.00,300.00,0.00,4.20,8 +0.00,300.00,0.00,2.84,7 +0.00,300.00,0.00,1.48,7 +0.00,300.00,0.00,0.12,7 +0.00,300.00,0.00,5.04,6 +0.00,300.00,0.00,3.68,6 +0.00,300.00,0.00,2.32,6 +0.00,300.00,0.00,0.96,5 +0.00,300.00,0.00,5.88,5 +0.00,300.00,0.00,4.52,5 +2718.38,300.00,0.00,3.16,4 +0.00,300.00,0.00,1.80,4 +2731.61,300.00,0.00,0.44,4 +2832.47,300.00,0.00,5.37,3 +0.00,300.00,0.00,4.01,3 +2209.28,300.00,0.00,2.65,3 +0.00,300.00,0.00,1.29,2 +0.00,300.00,0.00,6.22,2 +0.00,300.00,0.00,4.86,2 +0.00,400.00,0.00,4.71,9 +1260.14,400.00,0.00,3.35,9 +1486.25,400.00,0.00,1.99,9 +0.00,400.00,0.00,0.63,8 +0.00,400.00,0.00,5.56,8 +0.00,400.00,0.00,4.20,8 +0.00,400.00,0.00,2.84,7 +0.00,400.00,0.00,1.48,7 +0.00,400.00,0.00,0.12,7 +0.00,400.00,0.00,5.04,6 +0.00,400.00,0.00,3.68,6 +0.00,400.00,0.00,2.32,6 +0.00,400.00,0.00,0.96,5 +0.00,400.00,0.00,5.88,5 +0.00,400.00,0.00,4.52,5 +2782.99,400.00,0.00,3.16,4 +2766.32,400.00,0.00,1.80,4 +2782.13,400.00,0.00,0.44,4 +2886.43,400.00,0.00,5.37,3 +2133.16,400.00,0.00,4.01,3 +2108.93,400.00,0.00,2.65,3 +0.00,400.00,0.00,1.29,2 +3225.94,400.00,0.00,6.22,2 +0.00,400.00,0.00,4.86,2 +1251.20,500.00,0.00,4.71,9 +987.63,500.00,0.00,3.35,9 +1505.15,500.00,0.00,1.99,9 +1564.09,500.00,0.00,0.63,8 +0.00,500.00,0.00,5.56,8 +0.00,500.00,0.00,4.20,8 +0.00,500.00,0.00,2.84,7 +0.00,500.00,0.00,1.48,7 +0.00,500.00,0.00,0.12,7 +0.00,500.00,0.00,5.04,6 +0.00,500.00,0.00,3.68,6 +0.00,500.00,0.00,2.32,6 +0.00,500.00,0.00,0.96,5 +0.00,500.00,0.00,5.88,5 +0.00,500.00,0.00,4.52,5 +0.00,500.00,0.00,3.16,4 +2868.73,500.00,0.00,1.80,4 +2887.80,500.00,0.00,0.44,4 +2936.08,500.00,0.00,5.37,3 +2023.54,500.00,0.00,4.01,3 +3083.51,500.00,0.00,2.65,3 +0.00,500.00,0.00,1.29,2 +0.00,500.00,0.00,6.22,2 +0.00,500.00,0.00,4.86,2 +0.00,500.00,0.00,0.00,9 +0.00,500.00,0.00,4.92,9 +0.00,500.00,0.00,3.56,9 +0.00,500.00,0.00,2.20,8 +0.00,500.00,0.00,0.84,8 +0.00,500.00,0.00,5.77,8 +0.00,500.00,0.00,4.41,7 +0.00,500.00,0.00,3.05,7 +0.00,500.00,0.00,1.69,7 +2869.07,500.00,0.00,0.33,6 +2875.77,500.00,0.00,5.25,6 +2964.26,500.00,0.00,3.89,6 +0.00,500.00,0.00,2.53,5 +0.00,500.00,0.00,1.17,5 +0.00,500.00,0.00,6.10,5 +0.00,500.00,0.00,4.74,4 +3106.01,500.00,0.00,3.38,4 +932.30,500.00,0.00,2.02,4 +834.02,500.00,0.00,0.66,3 +887.63,500.00,0.00,5.58,3 +1309.62,500.00,0.00,4.22,3 +0.00,500.00,0.00,2.86,2 +0.00,500.00,0.00,1.50,2 +0.00,500.00,0.00,0.14,2 +0.00,500.00,100.00,0.00,9 +0.00,500.00,100.00,4.92,9 +0.00,500.00,100.00,3.56,9 +0.00,500.00,100.00,2.20,8 +0.00,500.00,100.00,0.84,8 +0.00,500.00,100.00,5.77,8 +0.00,500.00,100.00,4.41,7 +3365.46,500.00,100.00,3.05,7 +3017.70,500.00,100.00,1.69,7 +3004.98,500.00,100.00,0.33,6 +3028.69,500.00,100.00,5.25,6 +3158.76,500.00,100.00,3.89,6 +0.00,500.00,100.00,2.53,5 +0.00,500.00,100.00,1.17,5 +0.00,500.00,100.00,6.10,5 +0.00,500.00,100.00,4.74,4 +3240.38,500.00,100.00,3.38,4 +1105.15,500.00,100.00,2.02,4 +945.36,500.00,100.00,0.66,3 +1328.18,500.00,100.00,5.58,3 +0.00,500.00,100.00,4.22,3 +0.00,500.00,100.00,2.86,2 +0.00,500.00,100.00,1.50,2 +0.00,500.00,100.00,0.14,2 +0.00,500.00,200.00,0.00,9 +1301.55,500.00,200.00,4.92,9 +0.00,500.00,200.00,3.56,9 +1758.25,500.00,200.00,2.20,8 +0.00,500.00,200.00,0.84,8 +0.00,500.00,200.00,5.77,8 +0.00,500.00,200.00,4.41,7 +3426.12,500.00,200.00,3.05,7 +3432.82,500.00,200.00,1.69,7 +3184.19,500.00,200.00,0.33,6 +3259.97,500.00,200.00,5.25,6 +0.00,500.00,200.00,3.89,6 +0.00,500.00,200.00,2.53,5 +0.00,500.00,200.00,1.17,5 +0.00,500.00,200.00,6.10,5 +0.00,500.00,200.00,4.74,4 +0.00,500.00,200.00,3.38,4 +1129.04,500.00,200.00,2.02,4 +1095.36,500.00,200.00,0.66,3 +1240.21,500.00,200.00,5.58,3 +0.00,500.00,200.00,4.22,3 +0.00,500.00,200.00,2.86,2 +0.00,500.00,200.00,1.50,2 +0.00,500.00,200.00,0.14,2 +0.00,500.00,300.00,0.00,9 +1114.60,500.00,300.00,4.92,9 +0.00,500.00,300.00,3.56,9 +0.00,500.00,300.00,2.20,8 +0.00,500.00,300.00,0.84,8 +0.00,500.00,300.00,5.77,8 +0.00,500.00,300.00,4.41,7 +0.00,500.00,300.00,3.05,7 +3275.77,500.00,300.00,1.69,7 +3252.58,500.00,300.00,0.33,6 +3254.64,500.00,300.00,5.25,6 +0.00,500.00,300.00,3.89,6 +0.00,500.00,300.00,2.53,5 +0.00,500.00,300.00,1.17,5 +0.00,500.00,300.00,6.10,5 +3472.85,500.00,300.00,4.74,4 +1152.58,500.00,300.00,3.38,4 +1334.88,500.00,300.00,2.02,4 +1132.65,500.00,300.00,0.66,3 +1143.99,500.00,300.00,5.58,3 +0.00,500.00,300.00,4.22,3 +0.00,500.00,300.00,2.86,2 +0.00,500.00,300.00,1.50,2 +0.00,500.00,300.00,0.14,2 +0.00,500.00,400.00,0.00,9 +1033.33,500.00,400.00,4.92,9 +0.00,500.00,400.00,3.56,9 +1505.15,500.00,400.00,2.20,8 +0.00,500.00,400.00,0.84,8 +0.00,500.00,400.00,5.77,8 +0.00,500.00,400.00,4.41,7 +0.00,500.00,400.00,3.05,7 +0.00,500.00,400.00,1.69,7 +0.00,500.00,400.00,0.33,6 +3596.74,500.00,400.00,5.25,6 +0.00,500.00,400.00,3.89,6 +0.00,500.00,400.00,2.53,5 +0.00,500.00,400.00,1.17,5 +0.00,500.00,400.00,6.10,5 +1156.19,500.00,400.00,4.74,4 +1224.40,500.00,400.00,3.38,4 +1125.09,500.00,400.00,2.02,4 +1180.41,500.00,400.00,0.66,3 +1153.09,500.00,400.00,5.58,3 +0.00,500.00,400.00,4.22,3 +0.00,500.00,400.00,2.86,2 +0.00,500.00,400.00,1.50,2 +0.00,500.00,400.00,0.14,2 +0.00,500.00,500.00,0.00,9 +0.00,500.00,500.00,4.92,9 +0.00,500.00,500.00,3.56,9 +1350.00,500.00,500.00,2.20,8 +1357.56,500.00,500.00,0.84,8 +0.00,500.00,500.00,5.77,8 +0.00,500.00,500.00,4.41,7 +0.00,500.00,500.00,3.05,7 +0.00,500.00,500.00,1.69,7 +0.00,500.00,500.00,0.33,6 +3727.66,500.00,500.00,5.25,6 +0.00,500.00,500.00,3.89,6 +0.00,500.00,500.00,2.53,5 +0.00,500.00,500.00,1.17,5 +0.00,500.00,500.00,6.10,5 +1253.44,500.00,500.00,4.74,4 +1213.92,500.00,500.00,3.38,4 +1258.42,500.00,500.00,2.02,4 +1158.42,500.00,500.00,0.66,3 +0.00,500.00,500.00,5.58,3 +0.00,500.00,500.00,4.22,3 +0.00,500.00,500.00,2.86,2 +0.00,500.00,500.00,1.50,2 +0.00,500.00,500.00,0.14,2 +2040.55,500.00,600.00,0.00,9 +0.00,500.00,600.00,4.92,9 +0.00,500.00,600.00,3.56,9 +1276.12,500.00,600.00,2.20,8 +1900.00,500.00,600.00,0.84,8 +1881.62,500.00,600.00,5.77,8 +0.00,500.00,600.00,4.41,7 +0.00,500.00,600.00,3.05,7 +0.00,500.00,600.00,1.69,7 +3644.50,500.00,600.00,0.33,6 +0.00,500.00,600.00,5.25,6 +0.00,500.00,600.00,3.89,6 +0.00,500.00,600.00,2.53,5 +0.00,500.00,600.00,1.17,5 +0.00,500.00,600.00,6.10,5 +1498.63,500.00,600.00,4.74,4 +1335.05,500.00,600.00,3.38,4 +0.00,500.00,600.00,2.02,4 +0.00,500.00,600.00,0.66,3 +0.00,500.00,600.00,5.58,3 +0.00,500.00,600.00,4.22,3 +0.00,500.00,600.00,2.86,2 +0.00,500.00,600.00,1.50,2 +2019.59,500.00,600.00,0.14,2 +0.00,500.00,600.00,1.57,9 +0.00,500.00,600.00,0.21,9 +0.00,500.00,600.00,5.13,9 +0.00,500.00,600.00,3.77,8 +0.00,500.00,600.00,2.41,8 +0.00,500.00,600.00,1.06,8 +0.00,500.00,600.00,5.98,7 +0.00,500.00,600.00,4.62,7 +1404.47,500.00,600.00,3.26,7 +1718.21,500.00,600.00,1.90,6 +1358.25,500.00,600.00,0.54,6 +0.00,500.00,600.00,5.46,6 +0.00,500.00,600.00,4.10,5 +0.00,500.00,600.00,2.74,5 +0.00,500.00,600.00,1.38,5 +0.00,500.00,600.00,0.02,4 +2088.32,500.00,600.00,4.95,4 +2104.64,500.00,600.00,3.59,4 +663.40,500.00,600.00,2.23,3 +691.41,500.00,600.00,0.87,3 +1273.20,500.00,600.00,5.79,3 +0.00,500.00,600.00,4.43,2 +0.00,500.00,600.00,3.07,2 +0.00,500.00,600.00,1.71,2 +0.00,400.00,600.00,1.57,9 +0.00,400.00,600.00,0.21,9 +3446.74,400.00,600.00,5.13,9 +3754.30,400.00,600.00,3.77,8 +0.00,400.00,600.00,2.41,8 +0.00,400.00,600.00,1.06,8 +0.00,400.00,600.00,5.98,7 +0.00,400.00,600.00,4.62,7 +0.00,400.00,600.00,3.26,7 +1652.75,400.00,600.00,1.90,6 +1500.69,400.00,600.00,0.54,6 +0.00,400.00,600.00,5.46,6 +0.00,400.00,600.00,4.10,5 +0.00,400.00,600.00,2.74,5 +0.00,400.00,600.00,1.38,5 +0.00,400.00,600.00,0.02,4 +0.00,400.00,600.00,4.95,4 +0.00,400.00,600.00,3.59,4 +0.00,400.00,600.00,2.23,3 +640.21,400.00,600.00,0.87,3 +1121.13,400.00,600.00,5.79,3 +0.00,400.00,600.00,4.43,2 +0.00,400.00,600.00,3.07,2 +0.00,400.00,600.00,1.71,2 +0.00,300.00,600.00,1.57,9 +3283.68,300.00,600.00,0.21,9 +3321.65,300.00,600.00,5.13,9 +3635.57,300.00,600.00,3.77,8 +0.00,300.00,600.00,2.41,8 +0.00,300.00,600.00,1.06,8 +0.00,300.00,600.00,5.98,7 +4055.84,300.00,600.00,4.62,7 +1398.28,300.00,600.00,3.26,7 +4101.37,300.00,600.00,1.90,6 +1634.88,300.00,600.00,0.54,6 +0.00,300.00,600.00,5.46,6 +0.00,300.00,600.00,4.10,5 +0.00,300.00,600.00,2.74,5 +0.00,300.00,600.00,1.38,5 +0.00,300.00,600.00,0.02,4 +2356.36,300.00,600.00,4.95,4 +0.00,300.00,600.00,3.59,4 +571.13,300.00,600.00,2.23,3 +1002.58,300.00,600.00,0.87,3 +1006.53,300.00,600.00,5.79,3 +0.00,300.00,600.00,4.43,2 +0.00,300.00,600.00,3.07,2 +0.00,300.00,600.00,1.71,2 +0.00,200.00,600.00,1.57,9 +3126.98,200.00,600.00,0.21,9 +0.00,200.00,600.00,5.13,9 +3556.19,200.00,600.00,3.77,8 +0.00,200.00,600.00,2.41,8 +0.00,200.00,600.00,1.06,8 +0.00,200.00,600.00,5.98,7 +0.00,200.00,600.00,4.62,7 +0.00,200.00,600.00,3.26,7 +0.00,200.00,600.00,1.90,6 +1979.04,200.00,600.00,0.54,6 +0.00,200.00,600.00,5.46,6 +0.00,200.00,600.00,4.10,5 +0.00,200.00,600.00,2.74,5 +0.00,200.00,600.00,1.38,5 +0.00,200.00,600.00,0.02,4 +0.00,200.00,600.00,4.95,4 +0.00,200.00,600.00,3.59,4 +620.79,200.00,600.00,2.23,3 +999.31,200.00,600.00,0.87,3 +993.81,200.00,600.00,5.79,3 +0.00,200.00,600.00,4.43,2 +0.00,200.00,600.00,3.07,2 +0.00,200.00,600.00,1.71,2 +0.00,100.00,600.00,1.57,9 +2962.03,100.00,600.00,0.21,9 +2976.29,100.00,600.00,5.13,9 +3418.04,100.00,600.00,3.77,8 +0.00,100.00,600.00,2.41,8 +0.00,100.00,600.00,1.06,8 +0.00,100.00,600.00,5.98,7 +0.00,100.00,600.00,4.62,7 +0.00,100.00,600.00,3.26,7 +0.00,100.00,600.00,1.90,6 +0.00,100.00,600.00,0.54,6 +0.00,100.00,600.00,5.46,6 +0.00,100.00,600.00,4.10,5 +0.00,100.00,600.00,2.74,5 +0.00,100.00,600.00,1.38,5 +0.00,100.00,600.00,0.02,4 +722.51,100.00,600.00,4.95,4 +729.21,100.00,600.00,3.59,4 +895.02,100.00,600.00,2.23,3 +878.69,100.00,600.00,0.87,3 +971.65,100.00,600.00,5.79,3 +0.00,100.00,600.00,4.43,2 +0.00,100.00,600.00,3.07,2 +0.00,100.00,600.00,1.71,2 +0.00,0.00,600.00,1.57,9 +2822.34,0.00,600.00,0.21,9 +0.00,0.00,600.00,5.13,9 +3341.58,0.00,600.00,3.77,8 +0.00,0.00,600.00,2.41,8 +0.00,0.00,600.00,1.06,8 +0.00,0.00,600.00,5.98,7 +0.00,0.00,600.00,4.62,7 +0.00,0.00,600.00,3.26,7 +0.00,0.00,600.00,1.90,6 +0.00,0.00,600.00,0.54,6 +0.00,0.00,600.00,5.46,6 +0.00,0.00,600.00,4.10,5 +0.00,0.00,600.00,2.74,5 +0.00,0.00,600.00,1.38,5 +0.00,0.00,600.00,0.02,4 +0.00,0.00,600.00,4.95,4 +0.00,0.00,600.00,3.59,4 +915.29,0.00,600.00,2.23,3 +896.05,0.00,600.00,0.87,3 +0.00,0.00,600.00,5.79,3 +0.00,0.00,600.00,4.43,2 +0.00,0.00,600.00,3.07,2 +0.00,0.00,600.00,1.71,2 +2677.32,-100.00,600.00,1.57,9 +2636.60,-100.00,600.00,0.21,9 +0.00,-100.00,600.00,5.13,9 +3214.60,-100.00,600.00,3.77,8 +3219.76,-100.00,600.00,2.41,8 +0.00,-100.00,600.00,1.06,8 +0.00,-100.00,600.00,5.98,7 +0.00,-100.00,600.00,4.62,7 +0.00,-100.00,600.00,3.26,7 +0.00,-100.00,600.00,1.90,6 +2166.84,-100.00,600.00,0.54,6 +0.00,-100.00,600.00,5.46,6 +0.00,-100.00,600.00,4.10,5 +0.00,-100.00,600.00,2.74,5 +0.00,-100.00,600.00,1.38,5 +921.99,-100.00,600.00,0.02,4 +970.96,-100.00,600.00,4.95,4 +944.67,-100.00,600.00,3.59,4 +868.56,-100.00,600.00,2.23,3 +0.00,-100.00,600.00,0.87,3 +0.00,-100.00,600.00,5.79,3 +0.00,-100.00,600.00,4.43,2 +0.00,-100.00,600.00,3.07,2 +0.00,-100.00,600.00,1.71,2 +0.00,-100.00,600.00,3.14,9 +0.00,-100.00,600.00,1.78,9 +0.00,-100.00,600.00,0.42,9 +0.00,-100.00,600.00,5.35,8 +0.00,-100.00,600.00,3.99,8 +0.00,-100.00,600.00,2.63,8 +0.00,-100.00,600.00,1.27,7 +0.00,-100.00,600.00,6.19,7 +0.00,-100.00,600.00,4.83,7 +0.00,-100.00,600.00,3.47,6 +0.00,-100.00,600.00,2.11,6 +0.00,-100.00,600.00,0.75,6 +0.00,-100.00,600.00,5.67,5 +0.00,-100.00,600.00,4.31,5 +0.00,-100.00,600.00,2.95,5 +0.00,-100.00,600.00,1.59,4 +0.00,-100.00,600.00,0.23,4 +2662.71,-100.00,600.00,5.16,4 +2644.50,-100.00,600.00,3.80,3 +2685.57,-100.00,600.00,2.44,3 +3188.32,-100.00,600.00,1.08,3 +0.00,-100.00,600.00,6.00,2 +0.00,-100.00,600.00,4.64,2 +0.00,-100.00,600.00,3.28,2 +0.00,-100.00,500.00,3.14,9 +0.00,-100.00,500.00,1.78,9 +0.00,-100.00,500.00,0.42,9 +2022.85,-100.00,500.00,5.35,8 +0.00,-100.00,500.00,3.99,8 +0.00,-100.00,500.00,2.63,8 +0.00,-100.00,500.00,1.27,7 +0.00,-100.00,500.00,6.19,7 +0.00,-100.00,500.00,4.83,7 +0.00,-100.00,500.00,3.47,6 +0.00,-100.00,500.00,2.11,6 +0.00,-100.00,500.00,0.75,6 +0.00,-100.00,500.00,5.67,5 +0.00,-100.00,500.00,4.31,5 +0.00,-100.00,500.00,2.95,5 +0.00,-100.00,500.00,1.59,4 +0.00,-100.00,500.00,0.23,4 +2650.00,-100.00,500.00,5.16,4 +2631.27,-100.00,500.00,3.80,3 +2652.75,-100.00,500.00,2.44,3 +3096.74,-100.00,500.00,1.08,3 +0.00,-100.00,500.00,6.00,2 +0.00,-100.00,500.00,4.64,2 +0.00,-100.00,500.00,3.28,2 +0.00,-100.00,400.00,3.14,9 +0.00,-100.00,400.00,1.78,9 +0.00,-100.00,400.00,0.42,9 +0.00,-100.00,400.00,5.35,8 +0.00,-100.00,400.00,3.99,8 +0.00,-100.00,400.00,2.63,8 +0.00,-100.00,400.00,1.27,7 +0.00,-100.00,400.00,6.19,7 +0.00,-100.00,400.00,4.83,7 +1136.94,-100.00,400.00,3.47,6 +1263.57,-100.00,400.00,2.11,6 +0.00,-100.00,400.00,0.75,6 +0.00,-100.00,400.00,5.67,5 +0.00,-100.00,400.00,4.31,5 +0.00,-100.00,400.00,2.95,5 +0.00,-100.00,400.00,1.59,4 +2761.51,-100.00,400.00,0.23,4 +2683.85,-100.00,400.00,5.16,4 +2647.08,-100.00,400.00,3.80,3 +3018.38,-100.00,400.00,2.44,3 +3013.92,-100.00,400.00,1.08,3 +0.00,-100.00,400.00,6.00,2 +0.00,-100.00,400.00,4.64,2 +0.00,-100.00,400.00,3.28,2 +0.00,-100.00,300.00,3.14,9 +0.00,-100.00,300.00,1.78,9 +0.00,-100.00,300.00,0.42,9 +1854.64,-100.00,300.00,5.35,8 +0.00,-100.00,300.00,3.99,8 +0.00,-100.00,300.00,2.63,8 +0.00,-100.00,300.00,1.27,7 +0.00,-100.00,300.00,6.19,7 +0.00,-100.00,300.00,4.83,7 +0.00,-100.00,300.00,3.47,6 +0.00,-100.00,300.00,2.11,6 +0.00,-100.00,300.00,0.75,6 +0.00,-100.00,300.00,5.67,5 +0.00,-100.00,300.00,4.31,5 +0.00,-100.00,300.00,2.95,5 +0.00,-100.00,300.00,1.59,4 +2797.25,-100.00,300.00,0.23,4 +2641.07,-100.00,300.00,5.16,4 +2631.27,-100.00,300.00,3.80,3 +2942.78,-100.00,300.00,2.44,3 +2970.10,-100.00,300.00,1.08,3 +0.00,-100.00,300.00,6.00,2 +0.00,-100.00,300.00,4.64,2 +0.00,-100.00,300.00,3.28,2 +0.00,-100.00,200.00,3.14,9 +0.00,-100.00,200.00,1.78,9 +0.00,-100.00,200.00,0.42,9 +1784.36,-100.00,200.00,5.35,8 +0.00,-100.00,200.00,3.99,8 +0.00,-100.00,200.00,2.63,8 +0.00,-100.00,200.00,1.27,7 +0.00,-100.00,200.00,6.19,7 +0.00,-100.00,200.00,4.83,7 +1327.84,-100.00,200.00,3.47,6 +1329.90,-100.00,200.00,2.11,6 +1072.34,-100.00,200.00,0.75,6 +0.00,-100.00,200.00,5.67,5 +1069.93,-100.00,200.00,4.31,5 +0.00,-100.00,200.00,2.95,5 +1110.31,-100.00,200.00,1.59,4 +2887.46,-100.00,200.00,0.23,4 +2659.28,-100.00,200.00,5.16,4 +2648.97,-100.00,200.00,3.80,3 +2862.71,-100.00,200.00,2.44,3 +0.00,-100.00,200.00,1.08,3 +0.00,-100.00,200.00,6.00,2 +0.00,-100.00,200.00,4.64,2 +0.00,-100.00,200.00,3.28,2 +0.00,-100.00,100.00,3.14,9 +1803.61,-100.00,100.00,1.78,9 +0.00,-100.00,100.00,0.42,9 +1632.13,-100.00,100.00,5.35,8 +0.00,-100.00,100.00,3.99,8 +0.00,-100.00,100.00,2.63,8 +0.00,-100.00,100.00,1.27,7 +0.00,-100.00,100.00,6.19,7 +0.00,-100.00,100.00,4.83,7 +1520.27,-100.00,100.00,3.47,6 +1503.44,-100.00,100.00,2.11,6 +1295.88,-100.00,100.00,0.75,6 +0.00,-100.00,100.00,5.67,5 +0.00,-100.00,100.00,4.31,5 +0.00,-100.00,100.00,2.95,5 +0.00,-100.00,100.00,1.59,4 +0.00,-100.00,100.00,0.23,4 +2647.94,-100.00,100.00,5.16,4 +2638.14,-100.00,100.00,3.80,3 +2788.14,-100.00,100.00,2.44,3 +0.00,-100.00,100.00,1.08,3 +0.00,-100.00,100.00,6.00,2 +0.00,-100.00,100.00,4.64,2 +0.00,-100.00,100.00,3.28,2 +0.00,-100.00,0.00,3.14,9 +1571.31,-100.00,0.00,1.78,9 +1436.08,-100.00,0.00,0.42,9 +1333.51,-100.00,0.00,5.35,8 +0.00,-100.00,0.00,3.99,8 +0.00,-100.00,0.00,2.63,8 +0.00,-100.00,0.00,1.27,7 +0.00,-100.00,0.00,6.19,7 +0.00,-100.00,0.00,4.83,7 +1666.32,-100.00,0.00,3.47,6 +1675.77,-100.00,0.00,2.11,6 +1499.31,-100.00,0.00,0.75,6 +1514.26,-100.00,0.00,5.67,5 +0.00,-100.00,0.00,4.31,5 +0.00,-100.00,0.00,2.95,5 +0.00,-100.00,0.00,1.59,4 +0.00,-100.00,0.00,0.23,4 +2709.79,-100.00,0.00,5.16,4 +2750.86,-100.00,0.00,3.80,3 +2746.56,-100.00,0.00,2.44,3 +2769.24,-100.00,0.00,1.08,3 +0.00,-100.00,0.00,6.00,2 +0.00,-100.00,0.00,4.64,2 +0.00,-100.00,0.00,3.28,2 +0.00,-100.00,0.00,4.71,9 +0.00,-100.00,0.00,3.35,9 +0.00,-100.00,0.00,1.99,9 +1594.85,-100.00,0.00,0.63,8 +1981.10,-100.00,0.00,5.56,8 +0.00,-100.00,0.00,4.20,8 +0.00,-100.00,0.00,2.84,7 +0.00,-100.00,0.00,1.48,7 +0.00,-100.00,0.00,0.12,7 +3067.01,-100.00,0.00,5.04,6 +2691.07,-100.00,0.00,3.68,6 +2696.91,-100.00,0.00,2.32,6 +0.00,-100.00,0.00,0.96,5 +0.00,-100.00,0.00,5.88,5 +0.00,-100.00,0.00,4.52,5 +0.00,-100.00,0.00,3.16,4 +0.00,-100.00,0.00,1.80,4 +0.00,-100.00,0.00,0.44,4 +1416.67,-100.00,0.00,5.37,3 +755.15,-100.00,0.00,4.01,3 +742.61,-100.00,0.00,2.65,3 +0.00,-100.00,0.00,1.29,2 +0.00,-100.00,0.00,6.22,2 +0.00,-100.00,0.00,4.86,2 +0.00,0.00,0.00,4.71,9 +0.00,0.00,0.00,3.35,9 +0.00,0.00,0.00,1.99,9 +0.00,0.00,0.00,0.63,8 +0.00,0.00,0.00,5.56,8 +0.00,0.00,0.00,4.20,8 +0.00,0.00,0.00,2.84,7 +0.00,0.00,0.00,1.48,7 +0.00,0.00,0.00,0.12,7 +3197.77,0.00,0.00,5.04,6 +2853.61,0.00,0.00,3.68,6 +2854.30,0.00,0.00,2.32,6 +0.00,0.00,0.00,0.96,5 +0.00,0.00,0.00,5.88,5 +0.00,0.00,0.00,4.52,5 +0.00,0.00,0.00,3.16,4 +0.00,0.00,0.00,1.80,4 +3218.21,0.00,0.00,0.44,4 +1451.20,0.00,0.00,5.37,3 +669.42,0.00,0.00,4.01,3 +992.78,0.00,0.00,2.65,3 +0.00,0.00,0.00,1.29,2 +0.00,0.00,0.00,6.22,2 +0.00,0.00,0.00,4.86,2 +0.00,100.00,0.00,4.71,9 +0.00,100.00,0.00,3.35,9 +0.00,100.00,0.00,1.99,9 +1383.68,100.00,0.00,0.63,8 +1804.12,100.00,0.00,5.56,8 +0.00,100.00,0.00,4.20,8 +0.00,100.00,0.00,2.84,7 +0.00,100.00,0.00,1.48,7 +3328.52,100.00,0.00,0.12,7 +3312.54,100.00,0.00,5.04,6 +2998.63,100.00,0.00,3.68,6 +2994.50,100.00,0.00,2.32,6 +0.00,100.00,0.00,0.96,5 +0.00,100.00,0.00,5.88,5 +0.00,100.00,0.00,4.52,5 +0.00,100.00,0.00,3.16,4 +0.00,100.00,0.00,1.80,4 +1437.80,100.00,0.00,0.44,4 +1270.27,100.00,0.00,5.37,3 +985.22,100.00,0.00,4.01,3 +985.57,100.00,0.00,2.65,3 +0.00,100.00,0.00,1.29,2 +0.00,100.00,0.00,6.22,2 +0.00,100.00,0.00,4.86,2 +0.00,200.00,0.00,4.71,9 +0.00,200.00,0.00,3.35,9 +0.00,200.00,0.00,1.99,9 +1244.50,200.00,0.00,0.63,8 +0.00,200.00,0.00,5.56,8 +0.00,200.00,0.00,4.20,8 +0.00,200.00,0.00,2.84,7 +0.00,200.00,0.00,1.48,7 +0.00,200.00,0.00,0.12,7 +3426.12,200.00,0.00,5.04,6 +3448.63,200.00,0.00,3.68,6 +3287.63,200.00,0.00,2.32,6 +0.00,200.00,0.00,0.96,5 +0.00,200.00,0.00,5.88,5 +0.00,200.00,0.00,4.52,5 +0.00,200.00,0.00,3.16,4 +0.00,200.00,0.00,1.80,4 +3334.02,200.00,0.00,0.44,4 +1070.10,200.00,0.00,5.37,3 +1018.73,200.00,0.00,4.01,3 +963.92,200.00,0.00,2.65,3 +0.00,200.00,0.00,1.29,2 +0.00,200.00,0.00,6.22,2 +0.00,200.00,0.00,4.86,2 +0.00,300.00,0.00,4.71,9 +0.00,300.00,0.00,3.35,9 +0.00,300.00,0.00,1.99,9 +0.00,300.00,0.00,0.63,8 +1688.49,300.00,0.00,5.56,8 +0.00,300.00,0.00,4.20,8 +0.00,300.00,0.00,2.84,7 +0.00,300.00,0.00,1.48,7 +0.00,300.00,0.00,0.12,7 +3586.08,300.00,0.00,5.04,6 +3584.88,300.00,0.00,3.68,6 +3454.64,300.00,0.00,2.32,6 +0.00,300.00,0.00,0.96,5 +0.00,300.00,0.00,5.88,5 +0.00,300.00,0.00,4.52,5 +0.00,300.00,0.00,3.16,4 +0.00,300.00,0.00,1.80,4 +972.34,300.00,0.00,0.44,4 +925.94,300.00,0.00,5.37,3 +993.64,300.00,0.00,4.01,3 +1077.15,300.00,0.00,2.65,3 +0.00,300.00,0.00,1.29,2 +0.00,300.00,0.00,6.22,2 +0.00,300.00,0.00,4.86,2 +0.00,400.00,0.00,4.71,9 +0.00,400.00,0.00,3.35,9 +0.00,400.00,0.00,1.99,9 +1216.49,400.00,0.00,0.63,8 +1092.78,400.00,0.00,5.56,8 +1740.72,400.00,0.00,4.20,8 +0.00,400.00,0.00,2.84,7 +0.00,400.00,0.00,1.48,7 +0.00,400.00,0.00,0.12,7 +0.00,400.00,0.00,5.04,6 +3492.61,400.00,0.00,3.68,6 +3504.64,400.00,0.00,2.32,6 +0.00,400.00,0.00,0.96,5 +0.00,400.00,0.00,5.88,5 +0.00,400.00,0.00,4.52,5 +0.00,400.00,0.00,3.16,4 +3430.93,400.00,0.00,1.80,4 +1017.53,400.00,0.00,0.44,4 +994.16,400.00,0.00,5.37,3 +1007.90,400.00,0.00,4.01,3 +937.11,400.00,0.00,2.65,3 +0.00,400.00,0.00,1.29,2 +0.00,400.00,0.00,6.22,2 +0.00,400.00,0.00,4.86,2 +0.00,500.00,0.00,4.71,9 +2288.14,500.00,0.00,3.35,9 +0.00,500.00,0.00,1.99,9 +961.51,500.00,0.00,0.63,8 +1667.01,500.00,0.00,5.56,8 +1696.22,500.00,0.00,4.20,8 +0.00,500.00,0.00,2.84,7 +0.00,500.00,0.00,1.48,7 +0.00,500.00,0.00,0.12,7 +0.00,500.00,0.00,5.04,6 +0.00,500.00,0.00,3.68,6 +3632.65,500.00,0.00,2.32,6 +0.00,500.00,0.00,0.96,5 +0.00,500.00,0.00,5.88,5 +0.00,500.00,0.00,4.52,5 +0.00,500.00,0.00,3.16,4 +1076.12,500.00,0.00,1.80,4 +973.88,500.00,0.00,0.44,4 +894.50,500.00,0.00,5.37,3 +856.87,500.00,0.00,4.01,3 +863.92,500.00,0.00,2.65,3 +0.00,500.00,0.00,1.29,2 +0.00,500.00,0.00,6.22,2 +0.00,500.00,0.00,4.86,2 +0.00,500.00,0.00,0.00,9 +0.00,500.00,0.00,4.92,9 +0.00,500.00,0.00,3.56,9 +3620.27,500.00,0.00,2.20,8 +0.00,500.00,0.00,0.84,8 +0.00,500.00,0.00,5.77,8 +0.00,500.00,0.00,4.41,7 +0.00,500.00,0.00,3.05,7 +0.00,500.00,0.00,1.69,7 +1176.46,500.00,0.00,0.33,6 +1182.47,500.00,0.00,5.25,6 +1195.70,500.00,0.00,3.89,6 +0.00,500.00,0.00,2.53,5 +0.00,500.00,0.00,1.17,5 +0.00,500.00,0.00,6.10,5 +943.81,500.00,0.00,4.74,4 +0.00,500.00,0.00,3.38,4 +0.00,500.00,0.00,2.02,4 +0.00,500.00,0.00,0.66,3 +919.42,500.00,0.00,5.58,3 +909.45,500.00,0.00,4.22,3 +0.00,500.00,0.00,2.86,2 +0.00,500.00,0.00,1.50,2 +0.00,500.00,0.00,0.14,2 +0.00,500.00,100.00,0.00,9 +0.00,500.00,100.00,4.92,9 +0.00,500.00,100.00,3.56,9 +3503.09,500.00,100.00,2.20,8 +0.00,500.00,100.00,0.84,8 +0.00,500.00,100.00,5.77,8 +0.00,500.00,100.00,4.41,7 +0.00,500.00,100.00,3.05,7 +0.00,500.00,100.00,1.69,7 +1184.71,500.00,100.00,0.33,6 +1165.81,500.00,100.00,5.25,6 +1146.39,500.00,100.00,3.89,6 +0.00,500.00,100.00,2.53,5 +0.00,500.00,100.00,1.17,5 +0.00,500.00,100.00,6.10,5 +0.00,500.00,100.00,4.74,4 +0.00,500.00,100.00,3.38,4 +0.00,500.00,100.00,2.02,4 +0.00,500.00,100.00,0.66,3 +881.10,500.00,100.00,5.58,3 +991.24,500.00,100.00,4.22,3 +0.00,500.00,100.00,2.86,2 +0.00,500.00,100.00,1.50,2 +0.00,500.00,100.00,0.14,2 +0.00,500.00,200.00,0.00,9 +0.00,500.00,200.00,4.92,9 +3407.90,500.00,200.00,3.56,9 +3371.31,500.00,200.00,2.20,8 +3642.61,500.00,200.00,0.84,8 +0.00,500.00,200.00,5.77,8 +0.00,500.00,200.00,4.41,7 +0.00,500.00,200.00,3.05,7 +0.00,500.00,200.00,1.69,7 +1134.88,500.00,200.00,0.33,6 +1275.09,500.00,200.00,5.25,6 +1579.21,500.00,200.00,3.89,6 +0.00,500.00,200.00,2.53,5 +0.00,500.00,200.00,1.17,5 +0.00,500.00,200.00,6.10,5 +0.00,500.00,200.00,4.74,4 +0.00,500.00,200.00,3.38,4 +2321.31,500.00,200.00,2.02,4 +966.84,500.00,200.00,0.66,3 +0.00,500.00,200.00,5.58,3 +967.87,500.00,200.00,4.22,3 +0.00,500.00,200.00,2.86,2 +0.00,500.00,200.00,1.50,2 +0.00,500.00,200.00,0.14,2 +0.00,500.00,300.00,0.00,9 +0.00,500.00,300.00,4.92,9 +3286.43,500.00,300.00,3.56,9 +3305.15,500.00,300.00,2.20,8 +3586.08,500.00,300.00,0.84,8 +0.00,500.00,300.00,5.77,8 +0.00,500.00,300.00,4.41,7 +0.00,500.00,300.00,3.05,7 +3901.89,500.00,300.00,1.69,7 +3911.00,500.00,300.00,0.33,6 +1265.29,500.00,300.00,5.25,6 +1514.43,500.00,300.00,3.89,6 +0.00,500.00,300.00,2.53,5 +0.00,500.00,300.00,1.17,5 +0.00,500.00,300.00,6.10,5 +0.00,500.00,300.00,4.74,4 +0.00,500.00,300.00,3.38,4 +0.00,500.00,300.00,2.02,4 +896.22,500.00,300.00,0.66,3 +675.94,500.00,300.00,5.58,3 +715.12,500.00,300.00,4.22,3 +0.00,500.00,300.00,2.86,2 +0.00,500.00,300.00,1.50,2 +0.00,500.00,300.00,0.14,2 +0.00,500.00,400.00,0.00,9 +0.00,500.00,400.00,4.92,9 +3154.98,500.00,400.00,3.56,9 +3128.18,500.00,400.00,2.20,8 +3519.59,500.00,400.00,0.84,8 +3515.98,500.00,400.00,5.77,8 +0.00,500.00,400.00,4.41,7 +0.00,500.00,400.00,3.05,7 +0.00,500.00,400.00,1.69,7 +0.00,500.00,400.00,0.33,6 +0.00,500.00,400.00,5.25,6 +2128.35,500.00,400.00,3.89,6 +0.00,500.00,400.00,2.53,5 +0.00,500.00,400.00,1.17,5 +0.00,500.00,400.00,6.10,5 +0.00,500.00,400.00,4.74,4 +0.00,500.00,400.00,3.38,4 +0.00,500.00,400.00,2.02,4 +624.57,500.00,400.00,0.66,3 +647.94,500.00,400.00,5.58,3 +1030.07,500.00,400.00,4.22,3 +0.00,500.00,400.00,2.86,2 +0.00,500.00,400.00,1.50,2 +0.00,500.00,400.00,0.14,2 +0.00,500.00,500.00,0.00,9 +0.00,500.00,500.00,4.92,9 +2990.03,500.00,500.00,3.56,9 +3006.01,500.00,500.00,2.20,8 +3481.44,500.00,500.00,0.84,8 +0.00,500.00,500.00,5.77,8 +0.00,500.00,500.00,4.41,7 +0.00,500.00,500.00,3.05,7 +0.00,500.00,500.00,1.69,7 +0.00,500.00,500.00,0.33,6 +0.00,500.00,500.00,5.25,6 +0.00,500.00,500.00,3.89,6 +0.00,500.00,500.00,2.53,5 +0.00,500.00,500.00,1.17,5 +0.00,500.00,500.00,6.10,5 +0.00,500.00,500.00,4.74,4 +0.00,500.00,500.00,3.38,4 +0.00,500.00,500.00,2.02,4 +631.96,500.00,500.00,0.66,3 +942.10,500.00,500.00,5.58,3 +927.32,500.00,500.00,4.22,3 +0.00,500.00,500.00,2.86,2 +0.00,500.00,500.00,1.50,2 +0.00,500.00,500.00,0.14,2 +0.00,500.00,600.00,0.00,9 +2914.09,500.00,600.00,4.92,9 +2880.93,500.00,600.00,3.56,9 +2864.60,500.00,600.00,2.20,8 +3384.19,500.00,600.00,0.84,8 +0.00,500.00,600.00,5.77,8 +0.00,500.00,600.00,4.41,7 +0.00,500.00,600.00,3.05,7 +0.00,500.00,600.00,1.69,7 +0.00,500.00,600.00,0.33,6 +0.00,500.00,600.00,5.25,6 +0.00,500.00,600.00,3.89,6 +0.00,500.00,600.00,2.53,5 +0.00,500.00,600.00,1.17,5 +0.00,500.00,600.00,6.10,5 +0.00,500.00,600.00,4.74,4 +0.00,500.00,600.00,3.38,4 +0.00,500.00,600.00,2.02,4 +901.20,500.00,600.00,0.66,3 +851.37,500.00,600.00,5.58,3 +817.70,500.00,600.00,4.22,3 +0.00,500.00,600.00,2.86,2 +0.00,500.00,600.00,1.50,2 +0.00,500.00,600.00,0.14,2 +0.00,500.00,600.00,1.57,9 +0.00,500.00,600.00,0.21,9 +0.00,500.00,600.00,5.13,9 +2227.15,500.00,600.00,3.77,8 +0.00,500.00,600.00,2.41,8 +0.00,500.00,600.00,1.06,8 +0.00,500.00,600.00,5.98,7 +0.00,500.00,600.00,4.62,7 +0.00,500.00,600.00,3.26,7 +0.00,500.00,600.00,1.90,6 +687.46,500.00,600.00,0.54,6 +0.00,500.00,600.00,5.46,6 +0.00,500.00,600.00,4.10,5 +0.00,500.00,600.00,2.74,5 +0.00,500.00,600.00,1.38,5 +0.00,500.00,600.00,0.02,4 +0.00,500.00,600.00,4.95,4 +0.00,500.00,600.00,3.59,4 +0.00,500.00,600.00,2.23,3 +2880.24,500.00,600.00,0.87,3 +2866.67,500.00,600.00,5.79,3 +0.00,500.00,600.00,4.43,2 +0.00,500.00,600.00,3.07,2 +0.00,500.00,600.00,1.71,2 +0.00,400.00,600.00,1.57,9 +0.00,400.00,600.00,0.21,9 +0.00,400.00,600.00,5.13,9 +0.00,400.00,600.00,3.77,8 +1916.67,400.00,600.00,2.41,8 +1909.45,400.00,600.00,1.06,8 +0.00,400.00,600.00,5.98,7 +0.00,400.00,600.00,4.62,7 +0.00,400.00,600.00,3.26,7 +1156.70,400.00,600.00,1.90,6 +0.00,400.00,600.00,0.54,6 +0.00,400.00,600.00,5.46,6 +1085.91,400.00,600.00,4.10,5 +0.00,400.00,600.00,2.74,5 +0.00,400.00,600.00,1.38,5 +0.00,400.00,600.00,0.02,4 +0.00,400.00,600.00,4.95,4 +0.00,400.00,600.00,3.59,4 +2804.47,400.00,600.00,2.23,3 +2776.29,400.00,600.00,0.87,3 +2785.40,400.00,600.00,5.79,3 +2813.23,400.00,600.00,4.43,2 +0.00,400.00,600.00,3.07,2 +0.00,400.00,600.00,1.71,2 +0.00,300.00,600.00,1.57,9 +0.00,300.00,600.00,0.21,9 +0.00,300.00,600.00,5.13,9 +0.00,300.00,600.00,3.77,8 +0.00,300.00,600.00,2.41,8 +1887.63,300.00,600.00,1.06,8 +0.00,300.00,600.00,5.98,7 +0.00,300.00,600.00,4.62,7 +0.00,300.00,600.00,3.26,7 +0.00,300.00,600.00,1.90,6 +1052.58,300.00,600.00,0.54,6 +1064.09,300.00,600.00,5.46,6 +0.00,300.00,600.00,4.10,5 +0.00,300.00,600.00,2.74,5 +0.00,300.00,600.00,1.38,5 +0.00,300.00,600.00,0.02,4 +0.00,300.00,600.00,4.95,4 +0.00,300.00,600.00,3.59,4 +2735.40,300.00,600.00,2.23,3 +2704.30,300.00,600.00,0.87,3 +3046.39,300.00,600.00,5.79,3 +2745.88,300.00,600.00,4.43,2 +0.00,300.00,600.00,3.07,2 +0.00,300.00,600.00,1.71,2 +0.00,200.00,600.00,1.57,9 +0.00,200.00,600.00,0.21,9 +0.00,200.00,600.00,5.13,9 +1164.26,200.00,600.00,3.77,8 +2049.66,200.00,600.00,2.41,8 +0.00,200.00,600.00,1.06,8 +0.00,200.00,600.00,5.98,7 +0.00,200.00,600.00,4.62,7 +0.00,200.00,600.00,3.26,7 +0.00,200.00,600.00,1.90,6 +1198.11,200.00,600.00,0.54,6 +0.00,200.00,600.00,5.46,6 +0.00,200.00,600.00,4.10,5 +0.00,200.00,600.00,2.74,5 +0.00,200.00,600.00,1.38,5 +968.04,200.00,600.00,0.02,4 +0.00,200.00,600.00,4.95,4 +0.00,200.00,600.00,3.59,4 +2689.35,200.00,600.00,2.23,3 +2683.51,200.00,600.00,0.87,3 +2693.30,200.00,600.00,5.79,3 +0.00,200.00,600.00,4.43,2 +0.00,200.00,600.00,3.07,2 +0.00,200.00,600.00,1.71,2 +0.00,100.00,600.00,1.57,9 +0.00,100.00,600.00,0.21,9 +0.00,100.00,600.00,5.13,9 +0.00,100.00,600.00,3.77,8 +1799.48,100.00,600.00,2.41,8 +0.00,100.00,600.00,1.06,8 +0.00,100.00,600.00,5.98,7 +0.00,100.00,600.00,4.62,7 +0.00,100.00,600.00,3.26,7 +0.00,100.00,600.00,1.90,6 +0.00,100.00,600.00,0.54,6 +0.00,100.00,600.00,5.46,6 +0.00,100.00,600.00,4.10,5 +0.00,100.00,600.00,2.74,5 +0.00,100.00,600.00,1.38,5 +1080.93,100.00,600.00,0.02,4 +1121.13,100.00,600.00,4.95,4 +0.00,100.00,600.00,3.59,4 +2623.71,100.00,600.00,2.23,3 +2620.10,100.00,600.00,0.87,3 +2833.85,100.00,600.00,5.79,3 +0.00,100.00,600.00,4.43,2 +0.00,100.00,600.00,3.07,2 +0.00,100.00,600.00,1.71,2 +0.00,0.00,600.00,1.57,9 +0.00,0.00,600.00,0.21,9 +0.00,0.00,600.00,5.13,9 +1345.70,0.00,600.00,3.77,8 +1244.85,0.00,600.00,2.41,8 +0.00,0.00,600.00,1.06,8 +0.00,0.00,600.00,5.98,7 +0.00,0.00,600.00,4.62,7 +0.00,0.00,600.00,3.26,7 +0.00,0.00,600.00,1.90,6 +1561.00,0.00,600.00,0.54,6 +1265.64,0.00,600.00,5.46,6 +1279.21,0.00,600.00,4.10,5 +1262.89,0.00,600.00,2.74,5 +0.00,0.00,600.00,1.38,5 +1282.65,0.00,600.00,0.02,4 +0.00,0.00,600.00,4.95,4 +0.00,0.00,600.00,3.59,4 +2565.29,0.00,600.00,2.23,3 +2561.00,0.00,600.00,0.87,3 +2722.68,0.00,600.00,5.79,3 +2742.10,0.00,600.00,4.43,2 +0.00,0.00,600.00,3.07,2 +0.00,0.00,600.00,1.71,2 +3231.27,-100.00,600.00,1.57,9 +3225.26,-100.00,600.00,0.21,9 +1690.55,-100.00,600.00,5.13,9 +1508.25,-100.00,600.00,3.77,8 +1421.31,-100.00,600.00,2.41,8 +1926.46,-100.00,600.00,1.06,8 +0.00,-100.00,600.00,5.98,7 +0.00,-100.00,600.00,4.62,7 +0.00,-100.00,600.00,3.26,7 +0.00,-100.00,600.00,1.90,6 +1647.94,-100.00,600.00,0.54,6 +1449.48,-100.00,600.00,5.46,6 +1462.20,-100.00,600.00,4.10,5 +1433.33,-100.00,600.00,2.74,5 +0.00,-100.00,600.00,1.38,5 +1445.53,-100.00,600.00,0.02,4 +0.00,-100.00,600.00,4.95,4 +2914.26,-100.00,600.00,3.59,4 +2521.13,-100.00,600.00,2.23,3 +2540.55,-100.00,600.00,0.87,3 +2630.07,-100.00,600.00,5.79,3 +2680.24,-100.00,600.00,4.43,2 +0.00,-100.00,600.00,3.07,2 +0.00,-100.00,600.00,1.71,2 +0.00,-100.00,600.00,3.14,9 +0.00,-100.00,600.00,1.78,9 +0.00,-100.00,600.00,0.42,9 +1629.21,-100.00,600.00,5.35,8 +1444.16,-100.00,600.00,3.99,8 +1417.70,-100.00,600.00,2.63,8 +1478.18,-100.00,600.00,1.27,7 +1463.40,-100.00,600.00,6.19,7 +0.00,-100.00,600.00,4.83,7 +0.00,-100.00,600.00,3.47,6 +2571.13,-100.00,600.00,2.11,6 +2562.89,-100.00,600.00,0.75,6 +0.00,-100.00,600.00,5.67,5 +0.00,-100.00,600.00,4.31,5 +0.00,-100.00,600.00,2.95,5 +0.00,-100.00,600.00,1.59,4 +0.00,-100.00,600.00,0.23,4 +0.00,-100.00,600.00,5.16,4 +2039.00,-100.00,600.00,3.80,3 +1477.84,-100.00,600.00,2.44,3 +869.42,-100.00,600.00,1.08,3 +0.00,-100.00,600.00,6.00,2 +0.00,-100.00,600.00,4.64,2 +0.00,-100.00,600.00,3.28,2 +0.00,-100.00,500.00,3.14,9 +0.00,-100.00,500.00,1.78,9 +0.00,-100.00,500.00,0.42,9 +1496.05,-100.00,500.00,5.35,8 +0.00,-100.00,500.00,3.99,8 +0.00,-100.00,500.00,2.63,8 +0.00,-100.00,500.00,1.27,7 +0.00,-100.00,500.00,6.19,7 +0.00,-100.00,500.00,4.83,7 +0.00,-100.00,500.00,3.47,6 +3078.87,-100.00,500.00,2.11,6 +2721.31,-100.00,500.00,0.75,6 +0.00,-100.00,500.00,5.67,5 +0.00,-100.00,500.00,4.31,5 +0.00,-100.00,500.00,2.95,5 +0.00,-100.00,500.00,1.59,4 +0.00,-100.00,500.00,0.23,4 +0.00,-100.00,500.00,5.16,4 +3242.10,-100.00,500.00,3.80,3 +1447.59,-100.00,500.00,2.44,3 +733.51,-100.00,500.00,1.08,3 +0.00,-100.00,500.00,6.00,2 +1732.82,-100.00,500.00,4.64,2 +0.00,-100.00,500.00,3.28,2 +0.00,-100.00,400.00,3.14,9 +0.00,-100.00,400.00,1.78,9 +0.00,-100.00,400.00,0.42,9 +0.00,-100.00,400.00,5.35,8 +1383.16,-100.00,400.00,3.99,8 +0.00,-100.00,400.00,2.63,8 +0.00,-100.00,400.00,1.27,7 +0.00,-100.00,400.00,6.19,7 +0.00,-100.00,400.00,4.83,7 +0.00,-100.00,400.00,3.47,6 +2912.03,-100.00,400.00,2.11,6 +2893.30,-100.00,400.00,0.75,6 +0.00,-100.00,400.00,5.67,5 +0.00,-100.00,400.00,4.31,5 +0.00,-100.00,400.00,2.95,5 +0.00,-100.00,400.00,1.59,4 +0.00,-100.00,400.00,0.23,4 +3258.59,-100.00,400.00,5.16,4 +1370.27,-100.00,400.00,3.80,3 +1077.32,-100.00,400.00,2.44,3 +858.76,-100.00,400.00,1.08,3 +0.00,-100.00,400.00,6.00,2 +0.00,-100.00,400.00,4.64,2 +0.00,-100.00,400.00,3.28,2 +0.00,-100.00,300.00,3.14,9 +0.00,-100.00,300.00,1.78,9 +0.00,-100.00,300.00,0.42,9 +1315.12,-100.00,300.00,5.35,8 +1313.06,-100.00,300.00,3.99,8 +0.00,-100.00,300.00,2.63,8 +0.00,-100.00,300.00,1.27,7 +0.00,-100.00,300.00,6.19,7 +0.00,-100.00,300.00,4.83,7 +0.00,-100.00,300.00,3.47,6 +3084.54,-100.00,300.00,2.11,6 +3089.00,-100.00,300.00,0.75,6 +0.00,-100.00,300.00,5.67,5 +0.00,-100.00,300.00,4.31,5 +0.00,-100.00,300.00,2.95,5 +0.00,-100.00,300.00,1.59,4 +0.00,-100.00,300.00,0.23,4 +3245.70,-100.00,300.00,5.16,4 +3244.16,-100.00,300.00,3.80,3 +927.66,-100.00,300.00,2.44,3 +1052.92,-100.00,300.00,1.08,3 +0.00,-100.00,300.00,6.00,2 +0.00,-100.00,300.00,4.64,2 +0.00,-100.00,300.00,3.28,2 +0.00,-100.00,200.00,3.14,9 +0.00,-100.00,200.00,1.78,9 +0.00,-100.00,200.00,0.42,9 +1276.63,-100.00,200.00,5.35,8 +1244.33,-100.00,200.00,3.99,8 +1803.95,-100.00,200.00,2.63,8 +0.00,-100.00,200.00,1.27,7 +0.00,-100.00,200.00,6.19,7 +0.00,-100.00,200.00,4.83,7 +3532.82,-100.00,200.00,3.47,6 +3241.07,-100.00,200.00,2.11,6 +3234.36,-100.00,200.00,0.75,6 +0.00,-100.00,200.00,5.67,5 +0.00,-100.00,200.00,4.31,5 +0.00,-100.00,200.00,2.95,5 +0.00,-100.00,200.00,1.59,4 +0.00,-100.00,200.00,0.23,4 +3274.05,-100.00,200.00,5.16,4 +873.20,-100.00,200.00,3.80,3 +791.92,-100.00,200.00,2.44,3 +905.50,-100.00,200.00,1.08,3 +0.00,-100.00,200.00,6.00,2 +0.00,-100.00,200.00,4.64,2 +0.00,-100.00,200.00,3.28,2 +0.00,-100.00,100.00,3.14,9 +0.00,-100.00,100.00,1.78,9 +0.00,-100.00,100.00,0.42,9 +0.00,-100.00,100.00,5.35,8 +1230.41,-100.00,100.00,3.99,8 +1796.91,-100.00,100.00,2.63,8 +1831.96,-100.00,100.00,1.27,7 +0.00,-100.00,100.00,6.19,7 +0.00,-100.00,100.00,4.83,7 +0.00,-100.00,100.00,3.47,6 +3724.91,-100.00,100.00,2.11,6 +3414.09,-100.00,100.00,0.75,6 +0.00,-100.00,100.00,5.67,5 +0.00,-100.00,100.00,4.31,5 +0.00,-100.00,100.00,2.95,5 +0.00,-100.00,100.00,1.59,4 +0.00,-100.00,100.00,0.23,4 +0.00,-100.00,100.00,5.16,4 +730.41,-100.00,100.00,3.80,3 +839.86,-100.00,100.00,2.44,3 +909.62,-100.00,100.00,1.08,3 +0.00,-100.00,100.00,6.00,2 +0.00,-100.00,100.00,4.64,2 +0.00,-100.00,100.00,3.28,2 +0.00,-100.00,0.00,3.14,9 +0.00,-100.00,0.00,1.78,9 +0.00,-100.00,0.00,0.42,9 +0.00,-100.00,0.00,5.35,8 +1088.66,-100.00,0.00,3.99,8 +1837.97,-100.00,0.00,2.63,8 +0.00,-100.00,0.00,1.27,7 +0.00,-100.00,0.00,6.19,7 +0.00,-100.00,0.00,4.83,7 +0.00,-100.00,0.00,3.47,6 +3859.45,-100.00,0.00,2.11,6 +3606.36,-100.00,0.00,0.75,6 +0.00,-100.00,0.00,5.67,5 +0.00,-100.00,0.00,4.31,5 +0.00,-100.00,0.00,2.95,5 +0.00,-100.00,0.00,1.59,4 +963.23,-100.00,0.00,0.23,4 +755.15,-100.00,0.00,5.16,4 +1002.92,-100.00,0.00,3.80,3 +817.53,-100.00,0.00,2.44,3 +850.00,-100.00,0.00,1.08,3 +0.00,-100.00,0.00,6.00,2 +0.00,-100.00,0.00,4.64,2 +0.00,-100.00,0.00,3.28,2 +0.00,-100.00,0.00,4.71,9 +0.00,-100.00,0.00,3.35,9 +0.00,-100.00,0.00,1.99,9 +3806.70,-100.00,0.00,0.63,8 +0.00,-100.00,0.00,5.56,8 +0.00,-100.00,0.00,4.20,8 +0.00,-100.00,0.00,2.84,7 +0.00,-100.00,0.00,1.48,7 +0.00,-100.00,0.00,0.12,7 +0.00,-100.00,0.00,5.04,6 +923.88,-100.00,0.00,3.68,6 +1097.08,-100.00,0.00,2.32,6 +1159.97,-100.00,0.00,0.96,5 +0.00,-100.00,0.00,5.88,5 +0.00,-100.00,0.00,4.52,5 +960.14,-100.00,0.00,3.16,4 +0.00,-100.00,0.00,1.80,4 +0.00,-100.00,0.00,0.44,4 +0.00,-100.00,0.00,5.37,3 +0.00,-100.00,0.00,4.01,3 +1046.22,-100.00,0.00,2.65,3 +0.00,-100.00,0.00,1.29,2 +0.00,-100.00,0.00,6.22,2 +0.00,-100.00,0.00,4.86,2 +0.00,0.00,0.00,4.71,9 +0.00,0.00,0.00,3.35,9 +0.00,0.00,0.00,1.99,9 +3503.78,0.00,0.00,0.63,8 +3506.36,0.00,0.00,5.56,8 +3656.53,0.00,0.00,4.20,8 +0.00,0.00,0.00,2.84,7 +0.00,0.00,0.00,1.48,7 +0.00,0.00,0.00,0.12,7 +0.00,0.00,0.00,5.04,6 +0.00,0.00,0.00,3.68,6 +1107.04,0.00,0.00,2.32,6 +0.00,0.00,0.00,0.96,5 +0.00,0.00,0.00,5.88,5 +0.00,0.00,0.00,4.52,5 +993.81,0.00,0.00,3.16,4 +0.00,0.00,0.00,1.80,4 +0.00,0.00,0.00,0.44,4 +0.00,0.00,0.00,5.37,3 +1611.34,0.00,0.00,4.01,3 +870.62,0.00,0.00,2.65,3 +0.00,0.00,0.00,1.29,2 +0.00,0.00,0.00,6.22,2 +0.00,0.00,0.00,4.86,2 +0.00,100.00,0.00,4.71,9 +0.00,100.00,0.00,3.35,9 +0.00,100.00,0.00,1.99,9 +0.00,100.00,0.00,0.63,8 +3434.71,100.00,0.00,5.56,8 +0.00,100.00,0.00,4.20,8 +0.00,100.00,0.00,2.84,7 +0.00,100.00,0.00,1.48,7 +0.00,100.00,0.00,0.12,7 +0.00,100.00,0.00,5.04,6 +1702.92,100.00,0.00,3.68,6 +1185.22,100.00,0.00,2.32,6 +0.00,100.00,0.00,0.96,5 +0.00,100.00,0.00,5.88,5 +0.00,100.00,0.00,4.52,5 +1238.14,100.00,0.00,3.16,4 +0.00,100.00,0.00,1.80,4 +0.00,100.00,0.00,0.44,4 +2407.73,100.00,0.00,5.37,3 +0.00,100.00,0.00,4.01,3 +696.22,100.00,0.00,2.65,3 +0.00,100.00,0.00,1.29,2 +0.00,100.00,0.00,6.22,2 +0.00,100.00,0.00,4.86,2 +0.00,200.00,0.00,4.71,9 +0.00,200.00,0.00,3.35,9 +0.00,200.00,0.00,1.99,9 +3338.49,200.00,0.00,0.63,8 +3358.25,200.00,0.00,5.56,8 +3596.56,200.00,0.00,4.20,8 +0.00,200.00,0.00,2.84,7 +0.00,200.00,0.00,1.48,7 +0.00,200.00,0.00,0.12,7 +0.00,200.00,0.00,5.04,6 +1882.13,200.00,0.00,3.68,6 +1196.91,200.00,0.00,2.32,6 +0.00,200.00,0.00,0.96,5 +0.00,200.00,0.00,5.88,5 +0.00,200.00,0.00,4.52,5 +0.00,200.00,0.00,3.16,4 +0.00,200.00,0.00,1.80,4 +0.00,200.00,0.00,0.44,4 +2301.03,200.00,0.00,5.37,3 +0.00,200.00,0.00,4.01,3 +0.00,200.00,0.00,2.65,3 +0.00,200.00,0.00,1.29,2 +0.00,200.00,0.00,6.22,2 +0.00,200.00,0.00,4.86,2 +0.00,300.00,0.00,4.71,9 +0.00,300.00,0.00,3.35,9 +3309.97,300.00,0.00,1.99,9 +3251.72,300.00,0.00,0.63,8 +3234.88,300.00,0.00,5.56,8 +3594.85,300.00,0.00,4.20,8 +3602.75,300.00,0.00,2.84,7 +0.00,300.00,0.00,1.48,7 +0.00,300.00,0.00,0.12,7 +3969.93,300.00,0.00,5.04,6 +1568.56,300.00,0.00,3.68,6 +1470.79,300.00,0.00,2.32,6 +0.00,300.00,0.00,0.96,5 +0.00,300.00,0.00,5.88,5 +0.00,300.00,0.00,4.52,5 +0.00,300.00,0.00,3.16,4 +0.00,300.00,0.00,1.80,4 +0.00,300.00,0.00,0.44,4 +0.00,300.00,0.00,5.37,3 +0.00,300.00,0.00,4.01,3 +1137.46,300.00,0.00,2.65,3 +0.00,300.00,0.00,1.29,2 +0.00,300.00,0.00,6.22,2 +0.00,300.00,0.00,4.86,2 +0.00,400.00,0.00,4.71,9 +0.00,400.00,0.00,3.35,9 +3188.14,400.00,0.00,1.99,9 +3153.61,400.00,0.00,0.63,8 +3149.83,400.00,0.00,5.56,8 +3564.78,400.00,0.00,4.20,8 +0.00,400.00,0.00,2.84,7 +0.00,400.00,0.00,1.48,7 +0.00,400.00,0.00,0.12,7 +0.00,400.00,0.00,5.04,6 +0.00,400.00,0.00,3.68,6 +0.00,400.00,0.00,2.32,6 +0.00,400.00,0.00,0.96,5 +0.00,400.00,0.00,5.88,5 +0.00,400.00,0.00,4.52,5 +0.00,400.00,0.00,3.16,4 +0.00,400.00,0.00,1.80,4 +0.00,400.00,0.00,0.44,4 +444.16,400.00,0.00,5.37,3 +444.16,400.00,0.00,4.01,3 +990.38,400.00,0.00,2.65,3 +0.00,400.00,0.00,1.29,2 +0.00,400.00,0.00,6.22,2 +0.00,400.00,0.00,4.86,2 diff --git a/examples/data_rect.csv b/examples/data_rect.csv new file mode 100644 index 0000000..2517f44 --- /dev/null +++ b/examples/data_rect.csv @@ -0,0 +1,720 @@ +741.07,0.00,100.00,0.00,9 +755.84,0.00,100.00,4.92,9 +864.26,0.00,100.00,3.56,9 +44.16,0.00,100.00,2.20,8 +364.09,0.00,100.00,0.84,8 +349.83,0.00,100.00,5.77,8 +355.15,0.00,100.00,4.41,7 +380.07,0.00,100.00,3.05,7 +1237.46,0.00,100.00,1.69,7 +870.45,0.00,100.00,0.33,6 +794.67,0.00,100.00,5.25,6 +769.76,0.00,100.00,3.89,6 +761.51,0.00,100.00,2.53,5 +763.57,0.00,100.00,1.17,5 +0.00,0.00,100.00,6.10,5 +790.72,0.00,100.00,4.74,4 +343.30,0.00,100.00,3.38,4 +336.08,0.00,100.00,2.02,4 +331.62,0.00,100.00,0.66,3 +2259.45,0.00,100.00,5.58,3 +882.13,0.00,100.00,4.22,3 +1384.02,0.00,100.00,2.86,2 +0.00,0.00,100.00,1.50,2 +747.25,0.00,100.00,0.14,2 +325.95,0.00,100.00,1.57,9 +1178.87,0.00,100.00,0.21,9 +835.57,0.00,100.00,5.13,9 +766.15,0.00,100.00,3.77,8 +747.59,0.00,100.00,2.41,8 +736.60,0.00,100.00,1.06,8 +743.13,0.00,100.00,5.98,7 +749.48,0.00,100.00,4.62,7 +769.93,0.00,100.00,3.26,7 +378.18,0.00,100.00,1.90,6 +358.59,0.00,100.00,0.54,6 +365.29,0.00,100.00,5.46,6 +0.00,0.00,100.00,4.10,5 +0.00,0.00,100.00,2.74,5 +0.00,0.00,100.00,1.38,5 +931.79,0.00,100.00,0.02,4 +774.05,0.00,100.00,4.95,4 +759.45,0.00,100.00,3.59,4 +765.12,0.00,100.00,2.23,3 +797.77,0.00,100.00,0.87,3 +868.38,0.00,100.00,5.79,3 +1428.35,0.00,100.00,4.43,2 +367.35,0.00,100.00,3.07,2 +327.49,0.00,100.00,1.71,2 +711.34,0.00,100.00,3.14,9 +748.11,0.00,100.00,1.78,9 +351.03,0.00,100.00,0.42,9 +331.44,0.00,100.00,5.35,8 +343.30,0.00,100.00,3.99,8 +343.47,0.00,100.00,2.63,8 +0.00,0.00,100.00,1.27,7 +2244.67,0.00,100.00,6.19,7 +822.16,0.00,100.00,4.83,7 +792.44,0.00,100.00,3.47,6 +791.24,0.00,100.00,2.11,6 +794.50,0.00,100.00,0.75,6 +938.66,0.00,100.00,5.67,5 +0.00,0.00,100.00,4.31,5 +0.00,0.00,100.00,2.95,5 +370.45,0.00,100.00,1.59,4 +351.37,0.00,100.00,0.23,4 +356.70,0.00,100.00,5.16,4 +376.46,0.00,100.00,3.80,3 +821.82,0.00,100.00,2.44,3 +751.20,0.00,100.00,1.08,3 +825.60,0.00,100.00,6.00,2 +725.09,0.00,100.00,4.64,2 +717.53,0.00,100.00,3.28,2 +0.00,0.00,100.00,4.71,9 +797.25,0.00,100.00,3.35,9 +760.82,0.00,100.00,1.99,9 +753.78,0.00,100.00,0.63,8 +756.36,0.00,100.00,5.56,8 +1175.09,0.00,100.00,4.20,8 +897.42,0.00,100.00,2.84,7 +1228.52,0.00,100.00,1.48,7 +374.91,0.00,100.00,0.12,7 +356.87,0.00,100.00,5.04,6 +368.90,0.00,100.00,3.68,6 +392.78,0.00,100.00,2.32,6 +0.00,0.00,100.00,0.96,5 +854.81,0.00,100.00,5.88,5 +0.00,0.00,100.00,4.52,5 +753.78,0.00,100.00,3.16,4 +741.24,0.00,100.00,1.80,4 +738.49,0.00,100.00,0.44,4 +793.13,0.00,100.00,5.37,3 +334.36,0.00,100.00,4.01,3 +325.60,0.00,100.00,2.65,3 +345.53,0.00,100.00,1.29,2 +2311.86,0.00,100.00,6.22,2 +0.00,0.00,100.00,4.86,2 +1172.68,0.00,100.00,0.00,9 +359.45,0.00,100.00,4.92,9 +328.35,0.00,100.00,3.56,9 +328.18,0.00,100.00,2.20,8 +1121.82,0.00,100.00,0.84,8 +866.15,0.00,100.00,5.77,8 +849.66,0.00,100.00,4.41,7 +839.18,0.00,100.00,3.05,7 +765.98,0.00,100.00,1.69,7 +762.20,0.00,100.00,0.33,6 +749.83,0.00,100.00,5.25,6 +765.46,0.00,100.00,3.89,6 +0.00,0.00,100.00,2.53,5 +368.04,0.00,100.00,1.17,5 +0.00,0.00,100.00,6.10,5 +354.64,0.00,100.00,4.74,4 +433.68,0.00,100.00,3.38,4 +2280.41,0.00,100.00,2.02,4 +797.59,0.00,100.00,0.66,3 +760.31,0.00,100.00,5.58,3 +751.55,0.00,100.00,4.22,3 +754.12,0.00,100.00,2.86,2 +759.11,0.00,100.00,1.50,2 +858.76,0.00,100.00,0.14,2 +814.09,0.00,100.00,1.57,9 +729.90,0.00,100.00,0.21,9 +715.98,0.00,100.00,5.13,9 +720.62,0.00,100.00,3.77,8 +716.67,0.00,100.00,2.41,8 +391.75,0.00,100.00,1.06,8 +1424.06,0.00,100.00,5.98,7 +365.12,0.00,100.00,4.62,7 +369.59,0.00,100.00,3.26,7 +385.74,0.00,100.00,1.90,6 +2254.30,0.00,100.00,0.54,6 +2261.68,0.00,100.00,5.46,6 +811.86,0.00,100.00,4.10,5 +795.36,0.00,100.00,2.74,5 +791.75,0.00,100.00,1.38,5 +789.69,0.00,100.00,0.02,4 +881.10,0.00,100.00,4.95,4 +908.59,0.00,100.00,3.59,4 +351.20,0.00,100.00,2.23,3 +330.58,0.00,100.00,0.87,3 +322.34,0.00,100.00,5.79,3 +335.40,0.00,100.00,4.43,2 +346.39,0.00,100.00,3.07,2 +1186.77,0.00,100.00,1.71,2 +338.32,0.00,100.00,3.14,9 +333.33,0.00,100.00,1.78,9 +2311.17,0.00,100.00,0.42,9 +1522.68,0.00,100.00,5.35,8 +1460.31,0.00,100.00,3.99,8 +811.00,0.00,100.00,2.63,8 +827.49,0.00,100.00,1.27,7 +782.13,0.00,100.00,6.19,7 +782.13,0.00,100.00,4.83,7 +797.94,0.00,100.00,3.47,6 +896.39,0.00,100.00,2.11,6 +1231.79,0.00,100.00,0.75,6 +0.00,0.00,100.00,5.67,5 +368.90,0.00,100.00,4.31,5 +0.00,0.00,100.00,2.95,5 +362.71,0.00,100.00,1.59,4 +1215.46,0.00,100.00,0.23,4 +825.60,0.00,100.00,5.16,4 +735.22,0.00,100.00,3.80,3 +735.40,0.00,100.00,2.44,3 +712.37,0.00,100.00,1.08,3 +716.49,0.00,100.00,6.00,2 +802.06,0.00,100.00,4.64,2 +742.78,0.00,100.00,3.28,2 +765.46,0.00,100.00,4.71,9 +753.95,0.00,100.00,3.35,9 +766.15,0.00,100.00,1.99,9 +884.02,0.00,100.00,0.63,8 +1165.29,0.00,100.00,5.56,8 +367.70,0.00,100.00,4.20,8 +366.15,0.00,100.00,2.84,7 +349.83,0.00,100.00,1.48,7 +355.50,0.00,100.00,0.12,7 +366.49,0.00,100.00,5.04,6 +848.63,0.00,100.00,3.68,6 +846.74,0.00,100.00,2.32,6 +784.19,0.00,100.00,0.96,5 +774.23,0.00,100.00,5.88,5 +742.27,0.00,100.00,4.52,5 +734.54,0.00,100.00,3.16,4 +784.19,0.00,100.00,1.80,4 +365.98,0.00,100.00,0.44,4 +338.83,0.00,100.00,5.37,3 +343.30,0.00,100.00,4.01,3 +2201.03,0.00,100.00,2.65,3 +2219.76,0.00,100.00,1.29,2 +2201.37,0.00,100.00,6.22,2 +0.00,0.00,100.00,4.86,2 +312.54,0.00,100.00,0.00,9 +318.90,0.00,100.00,4.92,9 +336.94,0.00,100.00,3.56,9 +836.77,0.00,100.00,2.20,8 +769.93,0.00,100.00,0.84,8 +738.83,0.00,100.00,5.77,8 +741.92,0.00,100.00,4.41,7 +742.78,0.00,100.00,3.05,7 +743.99,0.00,100.00,1.69,7 +761.17,0.00,100.00,0.33,6 +385.40,0.00,100.00,5.25,6 +370.79,0.00,100.00,3.89,6 +0.00,0.00,100.00,2.53,5 +0.00,0.00,100.00,1.17,5 +0.00,0.00,100.00,6.10,5 +2242.78,0.00,100.00,4.74,4 +958.59,0.00,100.00,3.38,4 +793.47,0.00,100.00,2.02,4 +768.38,0.00,100.00,0.66,3 +775.26,0.00,100.00,5.58,3 +788.14,0.00,100.00,4.22,3 +866.49,0.00,100.00,2.86,2 +0.00,0.00,100.00,1.50,2 +1570.62,0.00,100.00,0.14,2 +717.18,0.00,100.00,1.57,9 +718.04,0.00,100.00,0.21,9 +713.75,0.00,100.00,5.13,9 +739.86,0.00,100.00,3.77,8 +365.29,0.00,100.00,2.41,8 +351.55,0.00,100.00,1.06,8 +379.90,0.00,100.00,5.98,7 +2338.32,0.00,100.00,4.62,7 +2246.91,0.00,100.00,3.26,7 +2266.32,0.00,100.00,1.90,6 +816.32,0.00,100.00,0.54,6 +799.66,0.00,100.00,5.46,6 +790.38,0.00,100.00,4.10,5 +906.70,0.00,100.00,2.74,5 +951.72,0.00,100.00,1.38,5 +910.65,0.00,100.00,0.02,4 +1202.23,0.00,100.00,4.95,4 +344.67,0.00,100.00,3.59,4 +323.20,0.00,100.00,2.23,3 +323.54,0.00,100.00,0.87,3 +340.03,0.00,100.00,5.79,3 +1171.31,0.00,100.00,4.43,2 +811.51,0.00,100.00,3.07,2 +813.23,0.00,100.00,1.71,2 +0.00,0.00,100.00,3.14,9 +2193.13,0.00,100.00,1.78,9 +2206.01,0.00,100.00,0.42,9 +854.64,0.00,100.00,5.35,8 +787.80,0.00,100.00,3.99,8 +775.60,0.00,100.00,2.63,8 +773.20,0.00,100.00,1.27,7 +795.19,0.00,100.00,6.19,7 +914.09,0.00,100.00,4.83,7 +936.08,0.00,100.00,3.47,6 +369.93,0.00,100.00,2.11,6 +346.05,0.00,100.00,0.75,6 +706.19,0.00,100.00,5.67,5 +0.00,0.00,100.00,4.31,5 +0.00,0.00,100.00,2.95,5 +839.86,0.00,100.00,1.59,4 +825.26,0.00,100.00,0.23,4 +737.63,0.00,100.00,5.16,4 +712.71,0.00,100.00,3.80,3 +729.21,0.00,100.00,2.44,3 +728.35,0.00,100.00,1.08,3 +1382.82,0.00,100.00,6.00,2 +1396.39,0.00,100.00,4.64,2 +372.34,0.00,100.00,3.28,2 +761.68,0.00,100.00,4.71,9 +850.52,0.00,100.00,3.35,9 +1171.48,0.00,100.00,1.99,9 +346.74,0.00,100.00,0.63,8 +325.26,0.00,100.00,5.56,8 +318.56,0.00,100.00,4.20,8 +336.43,0.00,100.00,2.84,7 +1200.86,0.00,100.00,1.48,7 +859.11,0.00,100.00,0.12,7 +824.74,0.00,100.00,5.04,6 +797.42,0.00,100.00,3.68,6 +751.89,0.00,100.00,2.32,6 +0.00,0.00,100.00,0.96,5 +785.22,0.00,100.00,5.88,5 +0.00,0.00,100.00,4.52,5 +377.66,0.00,100.00,3.16,4 +357.04,0.00,100.00,1.80,4 +363.06,0.00,100.00,0.44,4 +2248.45,0.00,100.00,5.37,3 +2294.33,0.00,100.00,4.01,3 +847.25,0.00,100.00,2.65,3 +0.00,0.00,100.00,1.29,2 +769.07,0.00,100.00,6.22,2 +754.64,0.00,100.00,4.86,2 +1167.35,0.00,100.00,0.00,9 +815.46,0.00,100.00,4.92,9 +806.01,0.00,100.00,3.56,9 +727.49,0.00,100.00,2.20,8 +724.91,0.00,100.00,0.84,8 +730.93,0.00,100.00,5.77,8 +733.85,0.00,100.00,4.41,7 +0.00,0.00,100.00,3.05,7 +0.00,0.00,100.00,1.69,7 +377.66,0.00,100.00,0.33,6 +383.85,0.00,100.00,5.25,6 +495.88,0.00,100.00,3.89,6 +0.00,0.00,100.00,2.53,5 +0.00,0.00,100.00,1.17,5 +812.37,0.00,100.00,6.10,5 +789.52,0.00,100.00,4.74,4 +787.80,0.00,100.00,3.38,4 +781.44,0.00,100.00,2.02,4 +807.56,0.00,100.00,0.66,3 +849.83,0.00,100.00,5.58,3 +318.56,0.00,100.00,4.22,3 +329.73,0.00,100.00,2.86,2 +297.25,0.00,100.00,1.50,2 +311.00,0.00,100.00,0.14,2 +1373.02,0.00,100.00,1.57,9 +371.13,0.00,100.00,0.21,9 +351.55,0.00,100.00,5.13,9 +355.50,0.00,100.00,3.77,8 +2303.95,0.00,100.00,2.41,8 +1274.40,0.00,100.00,1.06,8 +2406.19,0.00,100.00,5.98,7 +843.81,0.00,100.00,4.62,7 +802.23,0.00,100.00,3.26,7 +797.94,0.00,100.00,1.90,6 +805.33,0.00,100.00,0.54,6 +908.76,0.00,100.00,5.46,6 +0.00,0.00,100.00,4.10,5 +1210.82,0.00,100.00,2.74,5 +350.52,0.00,100.00,1.38,5 +331.79,0.00,100.00,0.02,4 +337.46,0.00,100.00,4.95,4 +1168.90,0.00,100.00,3.59,4 +804.30,0.00,100.00,2.23,3 +730.24,0.00,100.00,0.87,3 +711.17,0.00,100.00,5.79,3 +730.24,0.00,100.00,4.43,2 +707.73,0.00,100.00,3.07,2 +711.51,0.00,100.00,1.71,2 +908.93,0.00,100.00,3.14,9 +766.15,0.00,100.00,1.78,9 +765.98,0.00,100.00,0.42,9 +770.27,0.00,100.00,5.35,8 +779.21,0.00,100.00,3.99,8 +1176.98,0.00,100.00,2.63,8 +1416.49,0.00,100.00,1.27,7 +345.88,0.00,100.00,6.19,7 +338.83,0.00,100.00,4.83,7 +342.27,0.00,100.00,3.47,6 +375.95,0.00,100.00,2.11,6 +847.25,0.00,100.00,0.75,6 +839.52,0.00,100.00,5.67,5 +0.00,0.00,100.00,4.31,5 +758.59,0.00,100.00,2.95,5 +744.50,0.00,100.00,1.59,4 +742.27,0.00,100.00,0.23,4 +747.77,0.00,100.00,5.16,4 +356.53,0.00,100.00,3.80,3 +347.77,0.00,100.00,2.44,3 +352.58,0.00,100.00,1.08,3 +0.00,0.00,100.00,6.00,2 +2360.48,0.00,100.00,4.64,2 +2354.64,0.00,100.00,3.28,2 +334.36,0.00,100.00,4.71,9 +301.20,0.00,100.00,3.35,9 +304.98,0.00,100.00,1.99,9 +314.43,0.00,100.00,0.63,8 +850.00,0.00,100.00,5.56,8 +778.69,0.00,100.00,4.20,8 +833.85,0.00,100.00,2.84,7 +744.33,0.00,100.00,1.48,7 +771.82,0.00,100.00,0.12,7 +743.13,0.00,100.00,5.04,6 +812.03,0.00,100.00,3.68,6 +392.61,0.00,100.00,2.32,6 +386.77,0.00,100.00,0.96,5 +0.00,0.00,100.00,5.88,5 +0.00,0.00,100.00,4.52,5 +393.64,0.00,100.00,3.16,4 +504.98,0.00,100.00,1.80,4 +2362.20,0.00,100.00,0.44,4 +783.85,0.00,100.00,5.37,3 +765.12,0.00,100.00,4.01,3 +769.07,0.00,100.00,2.65,3 +770.27,0.00,100.00,1.29,2 +855.67,0.00,100.00,6.22,2 +1190.55,0.00,100.00,4.86,2 +703.78,0.00,100.00,0.00,9 +734.02,0.00,100.00,4.92,9 +707.73,0.00,100.00,3.56,9 +712.37,0.00,100.00,2.20,8 +394.85,0.00,100.00,0.84,8 +366.15,0.00,100.00,5.77,8 +383.16,0.00,100.00,4.41,7 +406.70,0.00,100.00,3.05,7 +0.00,0.00,100.00,1.69,7 +2249.14,0.00,100.00,0.33,6 +929.38,0.00,100.00,5.25,6 +813.40,0.00,100.00,3.89,6 +804.98,0.00,100.00,2.53,5 +890.03,0.00,100.00,1.17,5 +936.77,0.00,100.00,6.10,5 +847.25,0.00,100.00,4.74,4 +962.54,0.00,100.00,3.38,4 +1173.37,0.00,100.00,2.02,4 +310.48,0.00,100.00,0.66,3 +308.42,0.00,100.00,5.58,3 +316.15,0.00,100.00,4.22,3 +1253.61,0.00,100.00,2.86,2 +1174.74,0.00,100.00,1.50,2 +799.48,0.00,100.00,0.14,2 +350.00,0.00,100.00,1.57,9 +2310.65,0.00,100.00,0.21,9 +2249.48,0.00,100.00,5.13,9 +1227.83,0.00,100.00,3.77,8 +835.05,0.00,100.00,2.41,8 +794.50,0.00,100.00,1.06,8 +788.32,0.00,100.00,5.98,7 +796.05,0.00,100.00,4.62,7 +831.96,0.00,100.00,3.26,7 +904.98,0.00,100.00,1.90,6 +1214.60,0.00,100.00,0.54,6 +348.80,0.00,100.00,5.46,6 +350.86,0.00,100.00,4.10,5 +0.00,0.00,100.00,2.74,5 +0.00,0.00,100.00,1.38,5 +846.05,0.00,100.00,0.02,4 +820.62,0.00,100.00,4.95,4 +812.20,0.00,100.00,3.59,4 +732.99,0.00,100.00,2.23,3 +713.40,0.00,100.00,0.87,3 +722.51,0.00,100.00,5.79,3 +727.84,0.00,100.00,4.43,2 +1385.57,0.00,100.00,3.07,2 +0.00,0.00,100.00,1.71,2 +761.17,0.00,100.00,3.14,9 +772.51,0.00,100.00,1.78,9 +869.42,0.00,100.00,0.42,9 +1252.23,0.00,100.00,5.35,8 +332.99,0.00,100.00,3.99,8 +320.62,0.00,100.00,2.63,8 +322.68,0.00,100.00,1.27,7 +338.32,0.00,100.00,6.19,7 +1198.11,0.00,100.00,4.83,7 +832.47,0.00,100.00,3.47,6 +787.80,0.00,100.00,2.11,6 +749.31,0.00,100.00,0.75,6 +750.69,0.00,100.00,5.67,5 +770.96,0.00,100.00,4.31,5 +0.00,0.00,100.00,2.95,5 +765.29,0.00,100.00,1.59,4 +363.40,0.00,100.00,0.23,4 +357.90,0.00,100.00,5.16,4 +366.84,0.00,100.00,3.80,3 +459.45,0.00,100.00,2.44,3 +913.40,0.00,100.00,1.08,3 +0.00,0.00,100.00,6.00,2 +0.00,0.00,100.00,4.64,2 +780.58,0.00,100.00,3.28,2 +306.01,0.00,100.00,4.71,9 +1152.92,0.00,100.00,3.35,9 +813.92,0.00,100.00,1.99,9 +752.23,0.00,100.00,0.63,8 +728.87,0.00,100.00,5.56,8 +717.01,0.00,100.00,4.20,8 +729.55,0.00,100.00,2.84,7 +734.71,0.00,100.00,1.48,7 +0.00,0.00,100.00,0.12,7 +392.44,0.00,100.00,5.04,6 +381.62,0.00,100.00,3.68,6 +386.60,0.00,100.00,2.32,6 +0.00,0.00,100.00,0.96,5 +0.00,0.00,100.00,5.88,5 +0.00,0.00,100.00,4.52,5 +2344.67,0.00,100.00,3.16,4 +810.65,0.00,100.00,1.80,4 +787.46,0.00,100.00,0.44,4 +787.63,0.00,100.00,5.37,3 +805.67,0.00,100.00,4.01,3 +873.54,0.00,100.00,2.65,3 +1215.81,0.00,100.00,1.29,2 +1306.01,0.00,100.00,6.22,2 +293.47,0.00,100.00,4.86,2 +701.37,0.00,100.00,0.00,9 +710.31,0.00,100.00,4.92,9 +1379.04,0.00,100.00,3.56,9 +365.81,0.00,100.00,2.20,8 +358.93,0.00,100.00,0.84,8 +370.96,0.00,100.00,5.77,8 +2368.73,0.00,100.00,4.41,7 +0.00,0.00,100.00,3.05,7 +2416.67,0.00,100.00,1.69,7 +819.07,0.00,100.00,0.33,6 +806.01,0.00,100.00,5.25,6 +806.36,0.00,100.00,3.89,6 +960.31,0.00,100.00,2.53,5 +982.13,0.00,100.00,1.17,5 +0.00,0.00,100.00,6.10,5 +1197.77,0.00,100.00,4.74,4 +325.43,0.00,100.00,3.38,4 +319.59,0.00,100.00,2.02,4 +318.90,0.00,100.00,0.66,3 +819.07,0.00,100.00,5.58,3 +786.60,0.00,100.00,4.22,3 +789.18,0.00,100.00,2.86,2 +802.92,0.00,100.00,1.50,2 +707.22,0.00,100.00,0.14,2 +0.00,0.00,100.00,1.57,9 +901.20,0.00,100.00,0.21,9 +792.44,0.00,100.00,5.13,9 +778.18,0.00,100.00,3.77,8 +779.90,0.00,100.00,2.41,8 +801.72,0.00,100.00,1.06,8 +825.26,0.00,100.00,5.98,7 +0.00,0.00,100.00,4.62,7 +1481.96,0.00,100.00,3.26,7 +333.33,0.00,100.00,1.90,6 +332.30,0.00,100.00,0.54,6 +340.38,0.00,100.00,5.46,6 +0.00,0.00,100.00,4.10,5 +827.49,0.00,100.00,2.74,5 +813.23,0.00,100.00,1.38,5 +771.48,0.00,100.00,0.02,4 +762.71,0.00,100.00,4.95,4 +724.57,0.00,100.00,3.59,4 +726.46,0.00,100.00,2.23,3 +737.11,0.00,100.00,0.87,3 +352.41,0.00,100.00,5.79,3 +0.00,0.00,100.00,4.43,2 +370.79,0.00,100.00,3.07,2 +0.00,0.00,100.00,1.71,2 +1182.82,0.00,100.00,3.14,9 +1163.92,0.00,100.00,1.78,9 +313.92,0.00,100.00,0.42,9 +298.28,0.00,100.00,5.35,8 +306.87,0.00,100.00,3.99,8 +343.64,0.00,100.00,2.63,8 +1186.77,0.00,100.00,1.27,7 +822.68,0.00,100.00,6.19,7 +766.32,0.00,100.00,4.83,7 +744.85,0.00,100.00,3.47,6 +760.31,0.00,100.00,2.11,6 +747.08,0.00,100.00,0.75,6 +0.00,0.00,100.00,5.67,5 +0.00,0.00,100.00,4.31,5 +385.40,0.00,100.00,2.95,5 +373.88,0.00,100.00,1.59,4 +385.22,0.00,100.00,0.23,4 +2233.16,0.00,100.00,5.16,4 +903.09,0.00,100.00,3.80,3 +795.88,0.00,100.00,2.44,3 +775.94,0.00,100.00,1.08,3 +770.62,0.00,100.00,6.00,2 +768.21,0.00,100.00,4.64,2 +787.11,0.00,100.00,3.28,2 +792.27,0.00,100.00,4.71,9 +766.15,0.00,100.00,3.35,9 +739.69,0.00,100.00,1.99,9 +704.64,0.00,100.00,0.63,8 +714.26,0.00,100.00,5.56,8 +725.77,0.00,100.00,4.20,8 +0.00,0.00,100.00,2.84,7 +0.00,0.00,100.00,1.48,7 +415.12,0.00,100.00,0.12,7 +393.64,0.00,100.00,5.04,6 +2251.55,0.00,100.00,3.68,6 +2346.91,0.00,100.00,2.32,6 +964.60,0.00,100.00,0.96,5 +913.40,0.00,100.00,5.88,5 +813.75,0.00,100.00,4.52,5 +800.34,0.00,100.00,3.16,4 +856.70,0.00,100.00,1.80,4 +887.11,0.00,100.00,0.44,4 +877.66,0.00,100.00,5.37,3 +303.26,0.00,100.00,4.01,3 +293.47,0.00,100.00,2.65,3 +294.50,0.00,100.00,1.29,2 +304.98,0.00,100.00,6.22,2 +1254.47,0.00,100.00,4.86,2 +0.00,0.00,100.00,0.00,9 +359.28,0.00,100.00,4.92,9 +364.09,0.00,100.00,3.56,9 +2332.47,0.00,100.00,2.20,8 +1775.94,0.00,100.00,0.84,8 +858.59,0.00,100.00,5.77,8 +935.22,0.00,100.00,4.41,7 +815.46,0.00,100.00,3.05,7 +810.31,0.00,100.00,1.69,7 +806.36,0.00,100.00,0.33,6 +830.41,0.00,100.00,5.25,6 +962.20,0.00,100.00,3.89,6 +1202.23,0.00,100.00,2.53,5 +349.83,0.00,100.00,1.17,5 +348.63,0.00,100.00,6.10,5 +326.80,0.00,100.00,4.74,4 +341.24,0.00,100.00,3.38,4 +804.81,0.00,100.00,2.02,4 +743.13,0.00,100.00,0.66,3 +703.78,0.00,100.00,5.58,3 +707.90,0.00,100.00,4.22,3 +711.34,0.00,100.00,2.86,2 +703.78,0.00,100.00,1.50,2 +716.32,0.00,100.00,0.14,2 +791.75,0.00,100.00,1.57,9 +774.05,0.00,100.00,0.21,9 +772.34,0.00,100.00,5.13,9 +789.52,0.00,100.00,3.77,8 +1160.65,0.00,100.00,2.41,8 +366.32,0.00,100.00,1.06,8 +1340.21,0.00,100.00,5.98,7 +322.85,0.00,100.00,4.62,7 +327.32,0.00,100.00,3.26,7 +327.66,0.00,100.00,1.90,6 +852.75,0.00,100.00,0.54,6 +820.45,0.00,100.00,5.46,6 +840.89,0.00,100.00,4.10,5 +765.81,0.00,100.00,2.74,5 +745.19,0.00,100.00,1.38,5 +761.00,0.00,100.00,0.02,4 +744.33,0.00,100.00,4.95,4 +772.85,0.00,100.00,3.59,4 +363.23,0.00,100.00,2.23,3 +361.17,0.00,100.00,0.87,3 +389.00,0.00,100.00,5.79,3 +0.00,0.00,100.00,4.43,2 +2381.62,0.00,100.00,3.07,2 +0.00,0.00,100.00,1.71,2 +290.72,0.00,100.00,3.14,9 +282.65,0.00,100.00,1.78,9 +318.73,0.00,100.00,0.42,9 +845.70,0.00,100.00,5.35,8 +794.50,0.00,100.00,3.99,8 +737.80,0.00,100.00,2.63,8 +745.02,0.00,100.00,1.27,7 +717.01,0.00,100.00,6.19,7 +747.94,0.00,100.00,4.83,7 +739.35,0.00,100.00,3.47,6 +427.66,0.00,100.00,2.11,6 +393.47,0.00,100.00,0.75,6 +409.79,0.00,100.00,5.67,5 +0.00,0.00,100.00,4.31,5 +2445.53,0.00,100.00,2.95,5 +2417.18,0.00,100.00,1.59,4 +2349.66,0.00,100.00,0.23,4 +802.92,0.00,100.00,5.16,4 +783.68,0.00,100.00,3.80,3 +786.43,0.00,100.00,2.44,3 +804.81,0.00,100.00,1.08,3 +818.90,0.00,100.00,6.00,2 +1221.48,0.00,100.00,4.64,2 +0.00,0.00,100.00,3.28,2 +692.44,0.00,100.00,4.71,9 +691.07,0.00,100.00,3.35,9 +707.90,0.00,100.00,1.99,9 +397.94,0.00,100.00,0.63,8 +373.71,0.00,100.00,5.56,8 +366.67,0.00,100.00,4.20,8 +410.65,0.00,100.00,2.84,7 +0.00,0.00,100.00,1.48,7 +2432.82,0.00,100.00,0.12,7 +949.31,0.00,100.00,5.04,6 +831.79,0.00,100.00,3.68,6 +818.90,0.00,100.00,2.32,6 +915.64,0.00,100.00,0.96,5 +945.53,0.00,100.00,5.88,5 +0.00,0.00,100.00,4.52,5 +977.15,0.00,100.00,3.16,4 +1171.48,0.00,100.00,1.80,4 +305.67,0.00,100.00,0.44,4 +299.66,0.00,100.00,5.37,3 +311.34,0.00,100.00,4.01,3 +791.58,0.00,100.00,2.65,3 +1128.69,0.00,100.00,1.29,2 +774.23,0.00,100.00,6.22,2 +771.99,0.00,100.00,4.86,2 +0.00,0.00,100.00,0.00,9 +2262.71,0.00,100.00,4.92,9 +863.06,0.00,100.00,3.56,9 +800.52,0.00,100.00,2.20,8 +790.38,0.00,100.00,0.84,8 +791.41,0.00,100.00,5.77,8 +798.45,0.00,100.00,4.41,7 +928.69,0.00,100.00,3.05,7 +1213.06,0.00,100.00,1.69,7 +351.03,0.00,100.00,0.33,6 +329.04,0.00,100.00,5.25,6 +331.62,0.00,100.00,3.89,6 +0.00,0.00,100.00,2.53,5 +1184.88,0.00,100.00,1.17,5 +815.12,0.00,100.00,6.10,5 +802.23,0.00,100.00,4.74,4 +736.43,0.00,100.00,3.38,4 +719.93,0.00,100.00,2.02,4 +710.14,0.00,100.00,0.66,3 +732.65,0.00,100.00,5.58,3 +376.63,0.00,100.00,4.22,3 +1415.64,0.00,100.00,2.86,2 +374.74,0.00,100.00,1.50,2 +0.00,0.00,100.00,0.14,2 +858.25,0.00,100.00,1.57,9 +1170.79,0.00,100.00,0.21,9 +314.60,0.00,100.00,5.13,9 +296.39,0.00,100.00,3.77,8 +292.96,0.00,100.00,2.41,8 +304.30,0.00,100.00,1.06,8 +1237.97,0.00,100.00,5.98,7 +824.40,0.00,100.00,4.62,7 +811.68,0.00,100.00,3.26,7 +732.65,0.00,100.00,1.90,6 +734.54,0.00,100.00,0.54,6 +736.43,0.00,100.00,5.46,6 +0.00,0.00,100.00,4.10,5 +0.00,0.00,100.00,2.74,5 +395.70,0.00,100.00,1.38,5 +375.77,0.00,100.00,0.02,4 +376.63,0.00,100.00,4.95,4 +404.81,0.00,100.00,3.59,4 +924.23,0.00,100.00,2.23,3 +836.94,0.00,100.00,0.87,3 +790.21,0.00,100.00,5.79,3 +790.89,0.00,100.00,4.43,2 +778.35,0.00,100.00,3.07,2 +790.21,0.00,100.00,1.71,2 diff --git a/examples/pentagon.png b/examples/pentagon.png new file mode 100644 index 0000000..23dafcf Binary files /dev/null and b/examples/pentagon.png differ diff --git a/examples/pentagon_source.jpg b/examples/pentagon_source.jpg new file mode 100644 index 0000000..ac9a3ef Binary files /dev/null and b/examples/pentagon_source.jpg differ diff --git a/examples/rect.png b/examples/rect.png new file mode 100644 index 0000000..354f71b Binary files /dev/null and b/examples/rect.png differ diff --git a/examples/rect_source.jpg b/examples/rect_source.jpg new file mode 100644 index 0000000..9371a54 Binary files /dev/null and b/examples/rect_source.jpg differ diff --git a/bak/thresholds.txt b/examples/thresholds.txt similarity index 100% rename from bak/thresholds.txt rename to examples/thresholds.txt diff --git a/server_stuff/README.md b/server_stuff/README.md new file mode 100644 index 0000000..692ee51 --- /dev/null +++ b/server_stuff/README.md @@ -0,0 +1 @@ +# mapbots/server_stuff diff --git a/tests.zip b/tests.zip deleted file mode 100644 index 6a18a01..0000000 Binary files a/tests.zip and /dev/null differ