Skip to content

Instantly share code, notes, and snippets.

@pdn4kd
Created March 24, 2015 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdn4kd/5d49d6faebda483b107e to your computer and use it in GitHub Desktop.
Save pdn4kd/5d49d6faebda483b107e to your computer and use it in GitHub Desktop.
parse issues
package Text::CSV_XS;
# Copyright (c) 2007-2012 H.Merijn Brand. All rights reserved.
# Copyright (c) 1998-2001 Jochen Wiedmann. All rights reserved.
# Portions Copyright (c) 1997 Alan Citterman. All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
# HISTORY
#
# Written by:
# Jochen Wiedmann <joe@ispsoft.de>
#
# Based on Text::CSV by:
# Alan Citterman <alan@mfgrtl.com>
#
# Extended and Remodelled by:
# H.Merijn Brand (h.m.brand@xs4all.nl)
require 5.005;
use strict;
use warnings;
use DynaLoader ();
use Carp;
use vars qw( $VERSION @ISA );
$VERSION = "0.86";
@ISA = qw( DynaLoader );
bootstrap Text::CSV_XS $VERSION;
sub PV { 0 }
sub IV { 1 }
sub NV { 2 }
# version
#
# class/object method expecting no arguments and returning the version
# number of Text::CSV. there are no side-effects.
sub version
{
return $VERSION;
} # version
# new
#
# class/object method expecting no arguments and returning a reference to
# a newly created Text::CSV object.
my %def_attr = (
quote_char => '"',
escape_char => '"',
sep_char => ',',
eol => '',
always_quote => 0,
quote_space => 1,
quote_null => 1,
quote_binary => 1,
binary => 0,
keep_meta_info => 0,
allow_loose_quotes => 0,
allow_loose_escapes => 0,
allow_whitespace => 0,
blank_is_undef => 0,
empty_is_undef => 0,
verbatim => 0,
auto_diag => 0,
types => undef,
_EOF => 0,
_STATUS => undef,
_FIELDS => undef,
_FFLAGS => undef,
_STRING => undef,
_ERROR_INPUT => undef,
_COLUMN_NAMES => undef,
_BOUND_COLUMNS => undef,
_AHEAD => undef,
);
my $last_new_err = Text::CSV_XS->SetDiag (0);
sub _check_sanity
{
my $attr = shift;
for (qw( sep_char quote_char escape_char )) {
exists $attr->{$_} && defined $attr->{$_} && $attr->{$_} =~ m/[\r\n]/ and
return 1003;
}
$attr->{allow_whitespace} and
(defined $attr->{quote_char} && $attr->{quote_char} =~ m/^[ \t]$/) ||
(defined $attr->{escape_char} && $attr->{escape_char} =~ m/^[ \t]$/) and
return 1002;
return 0;
} # _check_sanity
sub new
{
$last_new_err = SetDiag (undef, 1000,
"usage: my \$csv = Text::CSV_XS->new ([{ option => value, ... }]);");
my $proto = shift;
my $class = ref ($proto) || $proto or return;
@_ > 0 && ref $_[0] ne "HASH" and return;
my $attr = shift || {};
for (keys %{$attr}) {
if (m/^[a-z]/ && exists $def_attr{$_}) {
defined $attr->{$_} && $] >= 5.008002 && m/_char$/ and
utf8::decode ($attr->{$_});
next;
}
# croak?
$last_new_err = SetDiag (undef, 1000, "INI - Unknown attribute '$_'");
$attr->{auto_diag} and error_diag ();
return;
}
my $self = {%def_attr, %{$attr}};
if (my $ec = _check_sanity ($self)) {
$last_new_err = SetDiag (undef, $ec);
$attr->{auto_diag} and error_diag ();
return;
}
$last_new_err = SetDiag (undef, 0);
defined $\ && !exists $attr->{eol} and $self->{eol} = $\;
bless $self, $class;
defined $self->{types} and $self->types ($self->{types});
$self;
} # new
# Keep in sync with XS!
my %_cache_id = ( # Only expose what is accessed from within PM
quote_char => 0,
escape_char => 1,
sep_char => 2,
binary => 3,
keep_meta_info => 4,
always_quote => 5,
allow_loose_quotes => 6,
allow_loose_escapes => 7,
allow_double_quoted => 8,
allow_whitespace => 9,
blank_is_undef => 10,
eol => 11, # 11 .. 18
verbatim => 22,
empty_is_undef => 23,
auto_diag => 24,
quote_space => 25,
quote_null => 31,
quote_binary => 32,
_is_bound => 26, # 26 .. 29
);
# A `character'
sub _set_attr_C
{
my ($self, $name, $val, $ec) = @_;
defined $val or $val = 0;
$] >= 5.008002 and utf8::decode ($val);
$self->{$name} = $val;
$ec = _check_sanity ($self) and
croak ($self->SetDiag ($ec));
$self->_cache_set ($_cache_id{$name}, $val);
} # _set_attr_C
# A flag
sub _set_attr_X
{
my ($self, $name, $val) = @_;
defined $val or $val = 0;
$self->{$name} = $val;
$self->_cache_set ($_cache_id{$name}, 0 + $val);
} # _set_attr_X
# A number
sub _set_attr_N
{
my ($self, $name, $val) = @_;
$self->{$name} = $val;
$self->_cache_set ($_cache_id{$name}, 0 + $val);
} # _set_attr_N
# Accessor methods.
# It is unwise to change them halfway through a single file!
sub quote_char
{
my $self = shift;
if (@_) {
my $qc = shift;
$self->_set_attr_C ("quote_char", $qc);
}
$self->{quote_char};
} # quote_char
sub escape_char
{
my $self = shift;
if (@_) {
my $ec = shift;
$self->_set_attr_C ("escape_char", $ec);
}
$self->{escape_char};
} # escape_char
sub sep_char
{
my $self = shift;
@_ and $self->_set_attr_C ("sep_char", shift);
$self->{sep_char};
} # sep_char
sub eol
{
my $self = shift;
if (@_) {
my $eol = shift;
defined $eol or $eol = "";
$self->{eol} = $eol;
$self->_cache_set ($_cache_id{eol}, $eol);
}
$self->{eol};
} # eol
sub always_quote
{
my $self = shift;
@_ and $self->_set_attr_X ("always_quote", shift);
$self->{always_quote};
} # always_quote
sub quote_space
{
my $self = shift;
@_ and $self->_set_attr_X ("quote_space", shift);
$self->{quote_space};
} # quote_space
sub quote_null
{
my $self = shift;
@_ and $self->_set_attr_X ("quote_null", shift);
$self->{quote_null};
} # quote_null
sub quote_binary
{
my $self = shift;
@_ and $self->_set_attr_X ("quote_binary", shift);
$self->{quote_binary};
} # quote_binary
sub binary
{
my $self = shift;
@_ and $self->_set_attr_X ("binary", shift);
$self->{binary};
} # binary
sub keep_meta_info
{
my $self = shift;
@_ and $self->_set_attr_X ("keep_meta_info", shift);
$self->{keep_meta_info};
} # keep_meta_info
sub allow_loose_quotes
{
my $self = shift;
@_ and $self->_set_attr_X ("allow_loose_quotes", shift);
$self->{allow_loose_quotes};
} # allow_loose_quotes
sub allow_loose_escapes
{
my $self = shift;
@_ and $self->_set_attr_X ("allow_loose_escapes", shift);
$self->{allow_loose_escapes};
} # allow_loose_escapes
sub allow_whitespace
{
my $self = shift;
if (@_) {
my $aw = shift;
$aw and
(defined $self->{quote_char} && $self->{quote_char} =~ m/^[ \t]$/) ||
(defined $self->{escape_char} && $self->{escape_char} =~ m/^[ \t]$/) and
croak ($self->SetDiag (1002));
$self->_set_attr_X ("allow_whitespace", $aw);
}
$self->{allow_whitespace};
} # allow_whitespace
sub blank_is_undef
{
my $self = shift;
@_ and $self->_set_attr_X ("blank_is_undef", shift);
$self->{blank_is_undef};
} # blank_is_undef
sub empty_is_undef
{
my $self = shift;
@_ and $self->_set_attr_X ("empty_is_undef", shift);
$self->{empty_is_undef};
} # empty_is_undef
sub verbatim
{
my $self = shift;
@_ and $self->_set_attr_X ("verbatim", shift);
$self->{verbatim};
} # verbatim
sub auto_diag
{
my $self = shift;
@_ and $self->_set_attr_X ("auto_diag", shift);
$self->{auto_diag};
} # auto_diag
# status
#
# object method returning the success or failure of the most recent
# combine () or parse (). there are no side-effects.
sub status
{
my $self = shift;
return $self->{_STATUS};
} # status
sub eof
{
my $self = shift;
return $self->{_EOF};
} # status
# error_input
#
# object method returning the first invalid argument to the most recent
# combine () or parse (). there are no side-effects.
sub error_input
{
my $self = shift;
return $self->{_ERROR_INPUT};
} # error_input
# erro_diag
#
# If (and only if) an error occurred, this function returns a code that
# indicates the reason of failure
sub error_diag
{
my $self = shift;
my @diag = (0 + $last_new_err, $last_new_err, 0);
if ($self && ref $self && # Not a class method or direct call
$self->isa (__PACKAGE__) && exists $self->{_ERROR_DIAG}) {
$diag[0] = 0 + $self->{_ERROR_DIAG};
$diag[1] = $self->{_ERROR_DIAG};
$diag[2] = 1 + $self->{_ERROR_POS} if exists $self->{_ERROR_POS};
}
my $context = wantarray;
unless (defined $context) { # Void context, auto-diag
if ($diag[0] && $diag[0] != 2012) {
my $msg = "# CSV_XS ERROR: $diag[0] - $diag[1] \@ pos $diag[2]\n";
if ($self && ref $self) { # auto_diag
my $lvl = $self->{auto_diag};
if ($lvl < 2) {
my @c = caller (2);
if (@c >= 11 && $c[10] && ref $c[10] eq "HASH") {
my $hints = $c[10];
(exists $hints->{autodie} && $hints->{autodie} or
exists $hints->{"guard Fatal"} &&
!exists $hints->{"no Fatal"}) and
$lvl++;
# Future releases of autodie will probably set $^H{autodie}
# to "autodie @args", like "autodie :all" or "autodie open"
# so we can/should check for "open" or "new"
}
}
$lvl > 1 ? die $msg : warn $msg;
}
else { # called without args in void context
warn $msg;
}
}
return;
}
return $context ? @diag : $diag[1];
} # error_diag
# string
#
# object method returning the result of the most recent combine () or the
# input to the most recent parse (), whichever is more recent. there are
# no side-effects.
sub string
{
my $self = shift;
return ref $self->{_STRING} ? ${$self->{_STRING}} : undef;
} # string
# fields
#
# object method returning the result of the most recent parse () or the
# input to the most recent combine (), whichever is more recent. there
# are no side-effects.
sub fields
{
my $self = shift;
return ref $self->{_FIELDS} ? @{$self->{_FIELDS}} : undef;
} # fields
# meta_info
#
# object method returning the result of the most recent parse () or the
# input to the most recent combine (), whichever is more recent. there
# are no side-effects. meta_info () returns (if available) some of the
# field's properties
sub meta_info
{
my $self = shift;
return ref $self->{_FFLAGS} ? @{$self->{_FFLAGS}} : undef;
} # meta_info
sub is_quoted
{
my ($self, $idx, $val) = @_;
ref $self->{_FFLAGS} &&
$idx >= 0 && $idx < @{$self->{_FFLAGS}} or return;
$self->{_FFLAGS}[$idx] & 0x0001 ? 1 : 0;
} # is_quoted
sub is_binary
{
my ($self, $idx, $val) = @_;
ref $self->{_FFLAGS} &&
$idx >= 0 && $idx < @{$self->{_FFLAGS}} or return;
$self->{_FFLAGS}[$idx] & 0x0002 ? 1 : 0;
} # is_binary
sub is_missing
{
my ($self, $idx, $val) = @_;
ref $self->{_FFLAGS} &&
$idx >= 0 && $idx < @{$self->{_FFLAGS}} or return;
$self->{_FFLAGS}[$idx] & 0x0010 ? 1 : 0;
} # is_missing
# combine
#
# object method returning success or failure. the given arguments are
# combined into a single comma-separated value. failure can be the
# result of no arguments or an argument containing an invalid character.
# side-effects include:
# setting status ()
# setting fields ()
# setting string ()
# setting error_input ()
sub combine
{
my $self = shift;
my $str = "";
$self->{_FIELDS} = \@_;
$self->{_FFLAGS} = undef;
$self->{_STATUS} = (@_ > 0) && $self->Combine (\$str, \@_, 0);
$self->{_STRING} = \$str;
$self->{_STATUS};
} # combine
# parse
#
# object method returning success or failure. the given argument is
# expected to be a valid comma-separated value. failure can be the
# result of no arguments or an argument containing an invalid sequence
# of characters. side-effects include:
# setting status ()
# setting fields ()
# setting meta_info ()
# setting string ()
# setting error_input ()
sub parse
{
my ($self, $str) = @_;
my $fields = [];
my $fflags = [];
$self->{_STRING} = \$str;
if (defined $str && $self->Parse ($str, $fields, $fflags)) {
$self->{_ERROR_INPUT} = undef;
$self->{_FIELDS} = $fields;
$self->{_FFLAGS} = $fflags;
$self->{_STATUS} = 1;
}
else {
$self->{_FIELDS} = undef;
$self->{_FFLAGS} = undef;
$self->{_STATUS} = 0;
}
$self->{_STATUS};
} # parse
sub column_names
{
my ($self, @keys) = @_;
@keys or
return defined $self->{_COLUMN_NAMES} ? @{$self->{_COLUMN_NAMES}} : undef;
@keys == 1 && ! defined $keys[0] and
return $self->{_COLUMN_NAMES} = undef;
if (@keys == 1 && ref $keys[0] eq "ARRAY") {
@keys = @{$keys[0]};
}
elsif (join "", map { defined $_ ? ref $_ : "" } @keys) {
croak ($self->SetDiag (3001));
}
$self->{_BOUND_COLUMNS} && @keys != @{$self->{_BOUND_COLUMNS}} and
croak ($self->SetDiag (3003));
$self->{_COLUMN_NAMES} = [ map { defined $_ ? $_ : "\cAUNDEF\cA" } @keys ];
@{$self->{_COLUMN_NAMES}};
} # column_names
sub bind_columns
{
my ($self, @refs) = @_;
@refs or
return defined $self->{_BOUND_COLUMNS} ? @{$self->{_BOUND_COLUMNS}} : undef;
@refs == 1 && ! defined $refs[0] and
return $self->{_BOUND_COLUMNS} = undef;
$self->{_COLUMN_NAMES} && @refs != @{$self->{_COLUMN_NAMES}} and
croak ($self->SetDiag (3003));
join "", map { ref $_ eq "SCALAR" ? "" : "*" } @refs and
croak ($self->SetDiag (3004));
$self->_set_attr_N ("_is_bound", scalar @refs);
$self->{_BOUND_COLUMNS} = [ @refs ];
@refs;
} # bind_columns
sub getline_hr
{
my ($self, @args, %hr) = @_;
$self->{_COLUMN_NAMES} or croak ($self->SetDiag (3002));
my $fr = $self->getline (@args) or return;
if (ref $self->{_FFLAGS}) {
$self->{_FFLAGS}[$_] = 0x0010 for ($#{$fr} + 1) .. $#{$self->{_COLUMN_NAMES}};
}
@hr{@{$self->{_COLUMN_NAMES}}} = @$fr;
\%hr;
} # getline_hr
sub getline_hr_all
{
my ($self, @args, %hr) = @_;
$self->{_COLUMN_NAMES} or croak ($self->SetDiag (3002));
my @cn = @{$self->{_COLUMN_NAMES}};
[ map { my %h; @h{@cn} = @$_; \%h } @{$self->getline_all (@args)} ];
} # getline_hr_all
sub types
{
my $self = shift;
if (@_) {
if (my $types = shift) {
$self->{_types} = join "", map { chr $_ } @{$types};
$self->{types} = $types;
}
else {
delete $self->{types};
delete $self->{_types};
undef;
}
}
else {
$self->{types};
}
} # types
1;
__END__
=head1 NAME
Text::CSV_XS - comma-separated values manipulation routines
=head1 SYNOPSIS
use Text::CSV_XS;
my @rows;
my $csv = Text::CSV_XS->new ({ binary => 1 }) or
die "Cannot use CSV: ".Text::CSV_XS->error_diag ();
open my $fh, "<:encoding(utf8)", "test.csv" or die "test.csv: $!";
while (my $row = $csv->getline ($fh)) {
$row->[2] =~ m/pattern/ or next; # 3rd field should match
push @rows, $row;
}
$csv->eof or $csv->error_diag ();
close $fh;
$csv->eol ("\r\n");
open $fh, ">:encoding(utf8)", "new.csv" or die "new.csv: $!";
$csv->print ($fh, $_) for @rows;
close $fh or die "new.csv: $!";
=head1 DESCRIPTION
Text::CSV_XS provides facilities for the composition and decomposition of
comma-separated values. An instance of the Text::CSV_XS class can combine
fields into a CSV string and parse a CSV string into fields.
The module accepts either strings or files as input and can utilize any
user-specified characters as delimiters, separators, and escapes so it is
perhaps better called ASV (anything separated values) rather than just CSV.
=head2 Embedded newlines
B<Important Note>: The default behavior is to only accept ASCII characters.
This means that fields can not contain newlines. If your data contains
newlines embedded in fields, or characters above 0x7e (tilde), or binary
data, you B<I<must>> set C<< binary => 1 >> in the call to L</new>. To cover
the widest range of parsing options, you will always want to set binary.
But you still have the problem that you have to pass a correct line to the
L</parse> method, which is more complicated from the usual point of usage:
my $csv = Text::CSV_XS->new ({ binary => 1, eol => $/ });
while (<>) { # WRONG!
$csv->parse ($_);
my @fields = $csv->fields ();
will break, as the while might read broken lines, as that does not care
about the quoting. If you need to support embedded newlines, the way to go
is either
my $csv = Text::CSV_XS->new ({ binary => 1, eol => $/ });
while (my $row = $csv->getline (*ARGV)) {
my @fields = @$row;
or, more safely in perl 5.6 and up
my $csv = Text::CSV_XS->new ({ binary => 1, eol => $/ });
open my $io, "<", $file or die "$file: $!";
while (my $row = $csv->getline ($io)) {
my @fields = @$row;
=head2 Unicode
On parsing (both for L</getline> and L</parse>), if the source is marked
being UTF8, then all fields that are marked binary will also be be
marked UTF8.
For complete control over encoding, please use Text::CSV::Encoded:
use Text::CSV::Encoded;
my $csv = Text::CSV::Encoded->new ({
encoding_in => "iso-8859-1", # the encoding comes into Perl
encoding_out => "cp1252", # the encoding comes out of Perl
});
$csv = Text::CSV::Encoded->new ({ encoding => "utf8" });
# combine () and print () accept *literally* utf8 encoded data
# parse () and getline () return *literally* utf8 encoded data
$csv = Text::CSV::Encoded->new ({ encoding => undef }); # default
# combine () and print () accept UTF8 marked data
# parse () and getline () return UTF8 marked data
On combining (L</print> and L</combine>), if any of the combining fields
was marked UTF8, the resulting string will be marked UTF8. Note however
that all fields I<before> the first field that was marked UTF8 and
contained 8-bit characters that were not upgraded to UTF8, these will be
bytes in the resulting string too, causing errors. If you pass data of
different encoding, or you don't know if there is different encoding, force
it to be upgraded before you pass them on:
$csv->print ($fh, [ map { utf8::upgrade (my $x = $_); $x } @data ]);
=head1 SPECIFICATION
While no formal specification for CSV exists, RFC 4180 1) describes a
common format and establishes "text/csv" as the MIME type registered with
the IANA.
Many informal documents exist that describe the CSV format. How To: The
Comma Separated Value (CSV) File Format 2) provides an overview of the CSV
format in the most widely used applications and explains how it can best be
used and supported.
1) http://tools.ietf.org/html/rfc4180
2) http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm
The basic rules are as follows:
B<CSV> is a delimited data format that has fields/columns separated by the
comma character and records/rows separated by newlines. Fields that contain
a special character (comma, newline, or double quote), must be enclosed in
double quotes. However, if a line contains a single entry which is the
empty string, it may be enclosed in double quotes. If a field's value
contains a double quote character it is escaped by placing another double
quote character next to it. The CSV file format does not require a specific
character encoding, byte order, or line terminator format.
=over 2
=item *
Each record is one line terminated by a line feed (ASCII/LF=0x0A) or a
carriage return and line feed pair (ASCII/CRLF=0x0D 0x0A), however,
line-breaks can be embedded.
=item *
Fields are separated by commas.
=item *
Allowable characters within a CSV field include 0x09 (tab) and the
inclusive range of 0x20 (space) through 0x7E (tilde). In binary mode all
characters are accepted, at least in quoted fields.
=item *
A field within CSV must be surrounded by double-quotes to contain a the
separator character (comma).
=back
Though this is the most clear and restrictive definition, Text::CSV_XS is
way more liberal than this, and allows extension:
=over 2
=item *
Line termination by a single carriage return is accepted by default
=item *
The separation-, escape-, and escape- characters can be any ASCII character
in the range from 0x20 (space) to 0x7E (tilde). Characters outside this
range may or may not work as expected. Multibyte characters, like U+060c
(ARABIC COMMA), U+FF0C (FULLWIDTH COMMA), U+241B (SYMBOL FOR ESCAPE),
U+2424 (SYMBOL FOR NEWLINE), U+FF02 (FULLWIDTH QUOTATION MARK), and U+201C
(LEFT DOUBLE QUOTATION MARK) (to give some examples of what might look
promising) are therefor not allowed.
If you use perl-5.8.2 or higher, these three attributes are utf8-decoded,
to increase the likelihood of success. This way U+00FE will be allowed as a
quote character.
=item *
A field within CSV must be surrounded by double-quotes to contain an
embedded double-quote, represented by a pair of consecutive double-quotes.
In binary mode you may additionally use the sequence C<"0> for
representation of a NULL byte.
=item *
Several violations of the above specification may be allowed by passing
options to the object creator.
=back
=head1 FUNCTIONS
=head2 version
X<version>
(Class method) Returns the current module version.
=head2 new
X<new>
(Class method) Returns a new instance of Text::CSV_XS. The objects
attributes are described by the (optional) hash ref C<\%attr>.
my $csv = Text::CSV_XS->new ({ attributes ... });
Currently the following attributes are available:
=over 4
=item eol
X<eol>
An end-of-line string to add to rows. C<undef> is replaced with an empty
string. The default is C<$\>. Common values for C<eol> are C<"\012"> (Line
Feed) or C<"\015\012"> (Carriage Return, Line Feed). Cannot be longer than
7 (ASCII) characters.
If both C<$/> and C<eol> equal C<"\015">, parsing lines that end on only a
Carriage Return without Line Feed, will be L</parse>d correct. Line endings,
whether in C<$/> or C<eol>, other than C<undef>, C<"\n">, C<"\r\n">, or
C<"\r"> are not (yet) supported for parsing.
=item sep_char
X<sep_char>
The char used for separating fields, by default a comma. (C<,>). Limited
to a single-byte character, usually in the range from 0x20 (space) to 0x7e
(tilde).
The separation character can not be equal to the quote character. The
separation character can not be equal to the escape character.
See also L</CAVEATS>
=item allow_whitespace
X<allow_whitespace>
When this option is set to true, whitespace (TAB's and SPACE's) surrounding
the separation character is removed when parsing. If either TAB or SPACE is
one of the three major characters C<sep_char>, C<quote_char>, or
C<escape_char> it will not be considered whitespace.
So lines like:
1 , "foo" , bar , 3 , zapp
are now correctly parsed, even though it violates the CSV specs.
Note that B<all> whitespace is stripped from start and end of each field.
That would make it more a I<feature> than a way to be able to parse bad CSV
lines, as
1, 2.0, 3, ape , monkey
will now be parsed as
("1", "2.0", "3", "ape", "monkey")
even if the original line was perfectly sane CSV.
=item blank_is_undef
X<blank_is_undef>
Under normal circumstances, CSV data makes no distinction between quoted-
and unquoted empty fields. They both end up in an empty string field once
read, so
1,"",," ",2
is read as
("1", "", "", " ", "2")
When I<writing> CSV files with C<always_quote> set, the unquoted empty
field is the result of an undefined value. To make it possible to also make
this distinction when reading CSV data, the C<blank_is_undef> option will
cause unquoted empty fields to be set to undef, causing the above to be
parsed as
("1", "", undef, " ", "2")
=item empty_is_undef
X<empty_is_undef>
Going one step further than C<blank_is_undef>, this attribute converts all
empty fields to undef, so
1,"",," ",2
is read as
(1, undef, undef, " ", 2)
Note that this only effects fields that are I<really> empty, not fields
that are empty after stripping allowed whitespace. YMMV.
=item quote_char
X<quote_char>
The char used for quoting fields containing blanks, by default the double
quote character (C<">). A value of undef suppresses quote chars. (For
simple cases only). Limited to a single-byte character, usually in the
range from 0x20 (space) to 0x7e (tilde).
The quote character can not be equal to the separation character.
=item allow_loose_quotes
X<allow_loose_quotes>
By default, parsing fields that have C<quote_char> characters inside an
unquoted field, like
1,foo "bar" baz,42
would result in a parse error. Though it is still bad practice to allow
this format, we cannot help there are some vendors that make their
applications spit out lines styled like this.
In case there is B<really> bad CSV data, like
1,"foo "bar" baz",42
or
1,""foo bar baz"",42
there is a way to get that parsed, and leave the quotes inside the quoted
field as-is. This can be achieved by setting C<allow_loose_quotes> B<AND>
making sure that the C<escape_char> is I<not> equal to C<quote_char>.
=item escape_char
X<escape_char>
The character used for escaping certain characters inside quoted fields.
Limited to a single-byte character, usually in the range from 0x20 (space)
to 0x7e (tilde).
The C<escape_char> defaults to being the literal double-quote mark (C<">)
in other words, the same as the default C<quote_char>. This means that
doubling the quote mark in a field escapes it:
"foo","bar","Escape ""quote mark"" with two ""quote marks""","baz"
If you change the default quote_char without changing the default
escape_char, the escape_char will still be the quote mark. If instead you
want to escape the quote_char by doubling it, you will need to change the
escape_char to be the same as what you changed the quote_char to.
The escape character can not be equal to the separation character.
=item allow_loose_escapes
X<allow_loose_escapes>
By default, parsing fields that have C<escape_char> characters that escape
characters that do not need to be escaped, like:
my $csv = Text::CSV_XS->new ({ escape_char => "\\" });
$csv->parse (qq{1,"my bar\'s",baz,42});
would result in a parse error. Though it is still bad practice to allow
this format, this option enables you to treat all escape character
sequences equal.
=item binary
X<binary>
If this attribute is TRUE, you may use binary characters in quoted fields,
including line feeds, carriage returns and NULL bytes. (The latter must be
escaped as C<"0>.) By default this feature is off.
If a string is marked UTF8, binary will be turned on automatically when
binary characters other than CR or NL are encountered. Note that a simple
string like C<"\x{00a0}"> might still be binary, but not marked UTF8, so
setting C<{ binary => 1 }> is still a wise option.
=item types
X<types>
A set of column types; this attribute is immediately passed to the L</types>
method. You must not set this attribute otherwise, except for using the
L</types> method.
=item always_quote
X<always_quote>
By default the generated fields are quoted only, if they need to, for
example, if they contain the separator. If you set this attribute to a TRUE
value, then all defined fields will be quoted. This is typically easier to
handle in external applications. (Poor creatures who are not using
Text::CSV_XS. :-)
=item quote_space
X<quote_space>
By default, a space in a field would trigger quotation. As no rule exists
this to be forced in CSV, nor any for the opposite, the default is true for
safety. You can exclude the space from this trigger by setting this
attribute to 0.
=item quote_null
X<quote_null>
By default, a NULL byte in a field would be escaped. This attribute enables
you to treat the NULL byte as a simple binary character in binary mode (the
C<< { binary => 1 } >> is set). The default is true. You can prevent NULL
escapes by setting this attribute to 0.
=item quote_binary
X<quote_binary>
By default, all "unsafe" bytes inside a string cause the combined field to
be quoted. By setting this attribute to 0, you can disable that trigger for
bytes >= 0x7f.
=item keep_meta_info
X<keep_meta_info>
By default, the parsing of input lines is as simple and fast as possible.
However, some parsing information - like quotation of the original field -
is lost in that process. Set this flag to true to be able to retrieve that
information after parsing with the methods L</meta_info>, L</is_quoted>,
and L</is_binary> described below. Default is false.
=item verbatim
X<verbatim>
This is a quite controversial attribute to set, but it makes hard things
possible.
The basic thought behind this is to tell the parser that the normally
special characters newline (NL) and Carriage Return (CR) will not be
special when this flag is set, and be dealt with as being ordinary binary
characters. This will ease working with data with embedded newlines.
When C<verbatim> is used with L</getline>, L</getline> auto-chomp's every
line.
Imagine a file format like
M^^Hans^Janssen^Klas 2\n2A^Ja^11-06-2007#\r\n
where, the line ending is a very specific "#\r\n", and the sep_char is a ^
(caret). None of the fields is quoted, but embedded binary data is likely
to be present. With the specific line ending, that should not be too hard
to detect.
By default, Text::CSV_XS' parse function however is instructed to only know
about "\n" and "\r" to be legal line endings, and so has to deal with the
embedded newline as a real end-of-line, so it can scan the next line if
binary is true, and the newline is inside a quoted field. With this
attribute however, we can tell parse () to parse the line as if \n is just
nothing more than a binary character.
For parse () this means that the parser has no idea about line ending
anymore, and getline () chomps line endings on reading.
=item auto_diag
X<auto_diag>
Set to true will cause L</error_diag> to be automatically be called in void
context upon errors.
In case of error C<2012 - EOF>, this call will be void.
If set to a value greater than 1, it will die on errors instead of warn.
Future extensions to this feature will include more reliable auto-detection
of the C<autodie> module being enabled, which will raise the value of
C<auto_diag> with C<1> on the moment the error is detected.
=back
To sum it up,
$csv = Text::CSV_XS->new ();
is equivalent to
$csv = Text::CSV_XS->new ({
quote_char => '"',
escape_char => '"',
sep_char => ',',
eol => $\,
always_quote => 0,
quote_space => 1,
quote_null => 1,
quote_binary => 1,
binary => 0,
keep_meta_info => 0,
allow_loose_quotes => 0,
allow_loose_escapes => 0,
allow_whitespace => 0,
blank_is_undef => 0,
empty_is_undef => 0,
verbatim => 0,
auto_diag => 0,
});
For all of the above mentioned flags, there is an accessor method available
where you can inquire for the current value, or change the value
my $quote = $csv->quote_char;
$csv->binary (1);
It is unwise to change these settings halfway through writing CSV data to a
stream. If however, you want to create a new stream using the available CSV
object, there is no harm in changing them.
If the L</new> constructor call fails, it returns C<undef>, and makes the
fail reason available through the L</error_diag> method.
$csv = Text::CSV_XS->new ({ ecs_char => 1 }) or
die "".Text::CSV_XS->error_diag ();
L</error_diag> will return a string like
"INI - Unknown attribute 'ecs_char'"
=head2 print
X<print>
$status = $csv->print ($io, $colref);
Similar to L</combine> + L</string> + L</print>, but way more efficient. It
expects an array ref as input (not an array!) and the resulting string is
not really created, but immediately written to the I<$io> object, typically
an IO handle or any other object that offers a L</print> method. Note, this
implies that the following is wrong in perl 5.005_xx and older:
open FILE, ">", "whatever";
$status = $csv->print (\*FILE, $colref);
For performance reasons the print method does not create a result string.
In particular the L</string>, L</status>, L</fields>, and L</error_input>
methods are meaningless after executing this method.
as in perl 5.005 and older, the glob C<\*FILE> is not an object, thus it
does not have a print method. The solution is to use an IO::File object or
to hide the glob behind an IO::Wrap object. See L<IO::File> and L<IO::Wrap>
for details.
=head2 combine
X<combine>
$status = $csv->combine (@columns);
This object function constructs a CSV string from the arguments, returning
success or failure. Failure can result from lack of arguments or an
argument containing an invalid character. Upon success, L</string> can be
called to retrieve the resultant CSV string. Upon failure, the value
returned by L</string> is undefined and L</error_input> can be called to
retrieve an invalid argument.
=head2 string
X<string>
$line = $csv->string ();
This object function returns the input to L</parse> or the resultant CSV
string of L</combine>, whichever was called more recently.
=head2 getline
X<getline>
$colref = $csv->getline ($io);
This is the counterpart to L</print>, like L</parse> is the counterpart to
L</combine>: It reads a row from the IO object using C<< $io->getline >>
and parses this row into an array ref. This array ref is returned by the
function or undef for failure.
When fields are bound with L</bind_columns>, the return value is a
reference to an empty list.
The L</string>, L</fields>, and L</status> methods are meaningless, again.
=head2 getline_all
X<getline_all>
$arrayref = $csv->getline_all ($io);
$arrayref = $csv->getline_all ($io, $offset);
$arrayref = $csv->getline_all ($io, $offset, $length);
This will return a reference to a list of L<getline ($io)|/getline> results.
In this call, C<keep_meta_info> is disabled. If C<$offset> is negative, as
with C<splice>, only the last C<abs ($offset)> records of C<$io> are taken
into consideration.
Given a CSV file with 10 lines:
lines call
----- ---------------------------------------------------------
0..9 $csv->getline_all ($io) # all
0..9 $csv->getline_all ($io, 0) # all
8..9 $csv->getline_all ($io, 8) # start at 8
- $csv->getline_all ($io, 0, 0) # start at 0 first 0 rows
0..4 $csv->getline_all ($io, 0, 5) # start at 0 first 5 rows
4..5 $csv->getline_all ($io, 4, 2) # start at 4 first 2 rows
8..9 $csv->getline_all ($io, -2) # last 2 rows
6..7 $csv->getline_all ($io, -4, 2) # first 2 of last 4 rows
=head2 parse
X<parse>
$status = $csv->parse ($line);
This object function decomposes a CSV string into fields, returning success
or failure. Failure can result from a lack of argument or the given CSV
string is improperly formatted. Upon success, L</fields> can be called to
retrieve the decomposed fields . Upon failure, the value returned by
L</fields> is undefined and L</error_input> can be called to retrieve the
invalid argument.
You may use the L</types> method for setting column types. See L</types>'
description below.
=head2 getline_hr
X<getline_hr>
The L</getline_hr> and L</column_names> methods work together to allow you
to have rows returned as hashrefs. You must call L</column_names> first to
declare your column names.
$csv->column_names (qw( code name price description ));
$hr = $csv->getline_hr ($io);
print "Price for $hr->{name} is $hr->{price} EUR\n";
L</getline_hr> will croak if called before L</column_names>.
=head2 getline_hr_all
X<getline_hr_all>
$arrayref = $csv->getline_hr_all ($io);
$arrayref = $csv->getline_hr_all ($io, $offset);
$arrayref = $csv->getline_hr_all ($io, $offset, $length);
This will return a reference to a list of L<getline_hr ($io)|/getline_hr>
results. In this call, C<keep_meta_info> is disabled.
=head2 column_names
X<column_names>
Set the keys that will be used in the L</getline_hr> calls. If no keys
(column names) are passed, it'll return the current setting.
L</column_names> accepts a list of scalars (the column names) or a single
array_ref, so you can pass L</getline>
$csv->column_names ($csv->getline ($io));
L</column_names> does B<no> checking on duplicates at all, which might lead
to unwanted results. Undefined entries will be replaced with the string
C<"\cAUNDEF\cA">, so
$csv->column_names (undef, "", "name", "name");
$hr = $csv->getline_hr ($io);
Will set C<< $hr->{"\cAUNDEF\cA"} >> to the 1st field, C<< $hr->{""} >> to
the 2nd field, and C<< $hr->{name} >> to the 4th field, discarding the 3rd
field.
L</column_names> croaks on invalid arguments.
=head2 bind_columns
X<bind_columns>
Takes a list of references to scalars to store the fields fetched
L</getline> in. When you don't pass enough references to store the fetched
fields in, L</getline> will fail. If you pass more than there are fields to
return, the remaining references are left untouched.
$csv->bind_columns (\$code, \$name, \$price, \$description);
while ($csv->getline ($io)) {
print "The price of a $name is \x{20ac} $price\n";
}
=head2 eof
X<eof>
$eof = $csv->eof ();
If L</parse> or L</getline> was used with an IO stream, this method will
return true (1) if the last call hit end of file, otherwise it will return
false (''). This is useful to see the difference between a failure and end
of file.
=head2 types
X<types>
$csv->types (\@tref);
This method is used to force that columns are of a given type. For example,
if you have an integer column, two double columns and a string column, then
you might do a
$csv->types ([Text::CSV_XS::IV (),
Text::CSV_XS::NV (),
Text::CSV_XS::NV (),
Text::CSV_XS::PV ()]);
Column types are used only for decoding columns, in other words by the
L</parse> and L</getline> methods.
You can unset column types by doing a
$csv->types (undef);
or fetch the current type settings with
$types = $csv->types ();
=over 4
=item IV
X<IV>
Set field type to integer.
=item NV
X<NV>
Set field type to numeric/float.
=item PV
X<PV>
Set field type to string.
=back
=head2 fields
X<fields>
@columns = $csv->fields ();
This object function returns the input to L</combine> or the resultant
decomposed fields of a successful L</parse>, whichever was called more
recently.
Note that the return value is undefined after using L</getline>, which does
not fill the data structures returned by L</parse>.
=head2 meta_info
X<meta_info>
@flags = $csv->meta_info ();
This object function returns the flags of the input to L</combine> or the
flags of the resultant decomposed fields of L</parse>, whichever was called
more recently.
For each field, a meta_info field will hold flags that tell something about
the field returned by the L</fields> method or passed to the L</combine>
method. The flags are bit-wise-or'd like:
=over 2
=item C< >0x0001
The field was quoted.
=item C< >0x0002
The field was binary.
=back
See the C<is_***> methods below.
=head2 is_quoted
X<is_quoted>
my $quoted = $csv->is_quoted ($column_idx);
Where C<$column_idx> is the (zero-based) index of the column in the last
result of L</parse>.
This returns a true value if the data in the indicated column was enclosed
in C<quote_char> quotes. This might be important for data where
C<,20070108,> is to be treated as a numeric value, and where C<,"20070108",>
is explicitly marked as character string data.
=head2 is_binary
X<is_binary>
my $binary = $csv->is_binary ($column_idx);
Where C<$column_idx> is the (zero-based) index of the column in the last
result of L</parse>.
This returns a true value if the data in the indicated column contained any
byte in the range C<[\x00-\x08,\x10-\x1F,\x7F-\xFF]>.
=head2 is_missing
X<is_missing>
my $missing = $csv->is_missing ($column_idx);
Where C<$column_idx> is the (zero-based) index of the column in the last
result of L</getline_hr>.
while (my $hr = $csv->getline_hr ($fh)) {
$csv->is_missing (0) and next; # This was an empty line
}
When using L</getline_hr> for parsing, it is impossible to tell if the
fields are C<undef> because they where not filled in the CSV stream or
because they were not read at all, as B<all> the fields defined by
L</column_names> are set in the hash-ref. If you still need to know if all
fields in each row are provided, you should enable C<keep_meta_info> so you
can check the flags.
=head2 status
X<status>
$status = $csv->status ();
This object function returns success (or failure) of L</combine> or
L</parse>, whichever was called more recently.
=head2 error_input
X<error_input>
$bad_argument = $csv->error_input ();
This object function returns the erroneous argument (if it exists) of
L</combine> or L</parse>, whichever was called more recently.
=head2 error_diag
X<error_diag>
Text::CSV_XS->error_diag ();
$csv->error_diag ();
$error_code = 0 + $csv->error_diag ();
$error_str = "" . $csv->error_diag ();
($cde, $str, $pos) = $csv->error_diag ();
If (and only if) an error occurred, this function returns the diagnostics
of that error.
If called in void context, it will print the internal error code and the
associated error message to STDERR.
If called in list context, it will return the error code and the error
message in that order. If the last error was from parsing, the third value
returned is a best guess at the location within the line that was being
parsed. It's value is 1-based. See F<examples/csv-check> for how this can
be used.
If called in scalar context, it will return the diagnostics in a single
scalar, a-la $!. It will contain the error code in numeric context, and the
diagnostics message in string context.
When called as a class method or a direct function call, the error
diagnostics is that of the last L</new> call.
=head2 SetDiag
X<SetDiag>
$csv->SetDiag (0);
Use to reset the diagnostics if you are dealing with errors.
=head1 INTERNALS
=over 4
=item Combine (...)
=item Parse (...)
=back
The arguments to these two internal functions are deliberately not
described or documented to enable the module author(s) to change it when
they feel the need for it and using them is highly discouraged as the API
may change in future releases.
=head1 EXAMPLES
=head2 Reading a CSV file line by line:
my $csv = Text::CSV_XS->new ({ binary => 1 });
open my $fh, "<", "file.csv" or die "file.csv: $!";
while (my $row = $csv->getline ($fh)) {
# do something with @$row
}
$csv->eof or $csv->error_diag;
close $fh or die "file.csv: $!";
=head2 Parsing CSV strings:
my $csv = Text::CSV_XS->new ({ keep_meta_info => 1, binary => 1 });
my $sample_input_string =
qq{"I said, ""Hi!""",Yes,"",2.34,,"1.09","\x{20ac}",};
if ($csv->parse ($sample_input_string)) {
my @field = $csv->fields;
foreach my $col (0 .. $#field) {
my $quo = $csv->is_quoted ($col) ? $csv->{quote_char} : "";
printf "%2d: %s%s%s\n", $col, $quo, $field[$col], $quo;
}
}
else {
print STDERR "parse () failed on argument: ",
$csv->error_input, "\n";
$csv->error_diag ();
}
=head2 Printing CSV data
=head3 The fast way: using L</print>
An example for creating CSV files using the L</print> method, like in
dumping the content of a database ($dbh) table ($tbl) to CSV:
my $csv = Text::CSV_XS->new ({ binary => 1, eol => $/ });
open my $fh, ">", "$tbl.csv" or die "$tbl.csv: $!";
my $sth = $dbh->prepare ("select * from $tbl");
$sth->execute;
$csv->print ($fh, $sth->{NAME_lc});
while (my $row = $sth->fetch) {
$csv->print ($fh, $row) or $csv->error_diag;
}
close $fh or die "$tbl.csv: $!";
=head3 The slow way: using L</combine> and L</string>
or using the slower L</combine> and L</string> methods:
my $csv = Text::CSV_XS->new;
open my $csv_fh, ">", "hello.csv" or die "hello.csv: $!";
my @sample_input_fields = (
'You said, "Hello!"', 5.67,
'"Surely"', '', '3.14159');
if ($csv->combine (@sample_input_fields)) {
print $csv_fh $csv->string, "\n";
}
else {
print "combine () failed on argument: ",
$csv->error_input, "\n";
}
close $csv_fh or die "hello.csv: $!";
=head2 The examples folder
For more extended examples, see the F<examples/> (1) sub-directory in the
original distribution or the git repository (2).
1. http://repo.or.cz/w/Text-CSV_XS.git?a=tree;f=examples
2. http://repo.or.cz/w/Text-CSV_XS.git
The following files can be found there:
=over 2
=item parser-xs.pl
X<parser-xs.pl>
This can be used as a boilerplate to `fix' bad CSV and parse beyond errors.
$ perl examples/parser-xs.pl bad.csv >good.csv
=item csv-check
X<csv-check>
This is a command-line tool that uses parser-xs.pl techniques to check the
CSV file and report on its content.
$ csv-check files/utf8.csv
Checked with examples/csv-check 1.5 using Text::CSV_XS 0.81
OK: rows: 1, columns: 2
sep = <,>, quo = <">, bin = <1>
=item csv2xls
X<csv2xls>
A script to convert CSV to Microsoft Excel. This requires L<Date::Calc> and
L<Spreadsheet::WriteExcel>. The converter accepts various options and can
produce UTF-8 Excel files.
=item csvdiff
X<csvdiff>
A script that provides colorized diff on sorted CSV files, assuming first
line is header and first field is the key. Output options include colorized
ANSI escape codes or HTML.
$ csvdiff --html --output=diff.html file1.csv file2.csv
=back
=head1 CAVEATS
C<Text::CSV_XS> is not designed to detect the characters used for field
separation and quoting. The parsing is done using predefined settings. In
the examples sub-directory, you can find scripts that demonstrate how you
can try to detect these characters yourself.
=head2 Microsoft Excel
The import/export from Microsoft Excel is a I<risky task>, according to the
documentation in C<Text::CSV::Separator>. Microsoft uses the system's
default list separator defined in the regional settings, which happens to
be a semicolon for Dutch, German and Spanish (and probably some others as
well). For the English locale, the default is a comma. In Windows however,
the user is free to choose a predefined locale, and then change every
individual setting in it, so checking the locale is no solution.
=head1 TODO
=over 2
=item More Errors & Warnings
New extensions ought to be clear and concise in reporting what error
occurred where and why, and possibly also tell a remedy to the problem.
error_diag is a (very) good start, but there is more work to be done here.
Basic calls should croak or warn on illegal parameters. Errors should be
documented.
=item setting meta info
Future extensions might include extending the L</meta_info>, L</is_quoted>,
and L</is_binary> to accept setting these flags for fields, so you can
specify which fields are quoted in the L</combine>/L</string> combination.
$csv->meta_info (0, 1, 1, 3, 0, 0);
$csv->is_quoted (3, 1);
=item combined methods
Requests for adding means (methods) that combine L</combine> and L</string>
in a single call will B<not> be honored. Likewise for L</parse> and
L</fields>. Given the trouble with embedded newlines, Using L</getline> and
L</print> instead is the preferred way to go.
=item Parse the whole file at once
Implement new methods that enable parsing of a complete file at once,
returning a list of hashes. Possible extension to this could be to enable a
column selection on the call:
my @AoH = $csv->parse_file ($filename, { cols => [ 1, 4..8, 12 ]});
Returning something like
[ { fields => [ 1, 2, "foo", 4.5, undef, "", 8 ],
flags => [ ... ],
},
{ fields => [ ... ],
.
},
]
Note that L</getline_all> already returns all rows for an open stream, but
this will not return flags.
=item EBCDIC
The hard-coding of characters and character ranges makes this module
unusable on EBCDIC system. Using some #ifdef structure could enable these
again without loosing speed. Testing would be the hard part.
Opening EBCDIC encode files on ASCII+ systems is likely to succeed using
Encode's cp37, cp1047, or posix-bc:
open my $fh, "<:encoding(cp1047)", "ebcdic_file.csv" or die "...";
=back
=head2 Release plan
No guarantees, but this is what I have in mind right now:
=over 2
=item next
- This might very well be 1.00
- DIAGNOSTICS setction in pod to *describe* the errors (see below)
- croak / carp
=item next + 1
- csv2csv - a script to regenerate a CSV file to follow standards
- EBCDIC support
=back
=head1 DIAGNOSTICS
Still under construction ...
If an error occurred, C<$csv->error_diag> can be used to get more
information on the cause of the failure. Note that for speed reasons, the
internal value is never cleared on success, so using the value returned by
L</error_diag> in normal cases - when no error occurred - may cause
unexpected results.
If the constructor failed, the cause can be found using L</error_diag> as a
class method, like C<Text::CSV_XS->error_diag>.
C<$csv->error_diag> is automatically called upon error when the contractor
was called with C<auto_diag> set to 1 or 2, or when C<autodie> is in effect.
When set to 1, this will cause a C<warn> with the error message, when set
to 2, it will C<die>. C<2012 - EOF> is excluded from C<auto_diag> reports.
Currently errors as described below are available. I have tried to make the
error itself explanatory enough, but more descriptions will be added. For
most of these errors, the first three capitals describe the error category:
=over 2
=item *
INI
Initialization error or option conflict.
=item *
ECR
Carriage-Return related parse error.
=item *
EOF
End-Of-File related parse error.
=item *
EIQ
Parse error inside quotation.
=item *
EIF
Parse error inside field.
=item *
ECB
Combine error.
=item *
EHR
HashRef parse related error.
=back
And below should be the complete list of error codes that can be returned:
=over 2
=item *
1001 "INI - sep_char is equal to quote_char or escape_char"
X<1001>
The separation character cannot be equal to either the quotation character
or the escape character, as that will invalidate all parsing rules.
=item *
1002 "INI - allow_whitespace with escape_char or quote_char SP or TAB"
X<1002>
Using C<allow_whitespace> when either C<escape_char> or C<quote_char> is
equal to SPACE or TAB is too ambiguous to allow.
=item *
1003 "INI - \r or \n in main attr not allowed"
X<1003>
Using default C<eol> characters in either C<sep_char>, C<quote_char>, or
C<escape_char> is not allowed.
=item *
2010 "ECR - QUO char inside quotes followed by CR not part of EOL"
X<2010>
When C<eol> has been set to something specific, other than the default,
like C<"\r\t\n">, and the C<"\r"> is following the B<second> (closing)
C<quote_char>, where the characters following the C<"\r"> do not make up
the C<eol> sequence, this is an error.
=item *
2011 "ECR - Characters after end of quoted field"
X<2011>
Sequences like C<1,foo,"bar"baz,2> are not allowed. C<"bar"> is a quoted
field, and after the closing quote, there should be either a new-line
sequence or a separation character.
=item *
2012 "EOF - End of data in parsing input stream"
X<2012>
Self-explaining. End-of-file while inside parsing a stream. Can only happen
when reading from streams with L</getline>, as using L</parse> is done on
strings that are not required to have a trailing C<eol>.
=item *
2021 "EIQ - NL char inside quotes, binary off"
X<2021>
Sequences like C<1,"foo\nbar",2> are only allowed when the binary option
has been selected with the constructor.
=item *
2022 "EIQ - CR char inside quotes, binary off"
X<2022>
Sequences like C<1,"foo\rbar",2> are only allowed when the binary option
has been selected with the constructor.
=item *
2023 "EIQ - QUO character not allowed"
X<2023>
Sequences like C<"foo "bar" baz",quux> and C<2023,",2008-04-05,"Foo, Bar",\n>
will cause this error.
=item *
2024 "EIQ - EOF cannot be escaped, not even inside quotes"
X<2024>
The escape character is not allowed as last character in an input stream.
=item *
2025 "EIQ - Loose unescaped escape"
X<2025>
An escape character should escape only characters that need escaping.
Allowing the escape for other characters is possible with the
C<allow_loose_escape> attribute.
=item *
2026 "EIQ - Binary character inside quoted field, binary off"
X<2026>
Binary characters are not allowed by default. Exceptions are fields that
contain valid UTF-8, that will automatically be upgraded is the content is
valid UTF-8. Pass the C<binary> attribute with a true value to accept
binary characters.
=item *
2027 "EIQ - Quoted field not terminated"
X<2027>
When parsing a field that started with a quotation character, the field is
expected to be closed with a quotation character. When the parsed line is
exhausted before the quote is found, that field is not terminated.
=item *
2030 "EIF - NL char inside unquoted verbatim, binary off"
X<2030>
=item *
2031 "EIF - CR char is first char of field, not part of EOL"
X<2031>
=item *
2032 "EIF - CR char inside unquoted, not part of EOL"
X<2032>
=item *
2034 "EIF - Loose unescaped quote"
X<2034>
=item *
2035 "EIF - Escaped EOF in unquoted field"
X<2035>
=item *
2036 "EIF - ESC error"
X<2036>
=item *
2037 "EIF - Binary character in unquoted field, binary off"
X<2037>
=item *
2110 "ECB - Binary character in Combine, binary off"
X<2110>
=item *
2200 "EIO - print to IO failed. See errno"
X<2200>
=item *
3001 "EHR - Unsupported syntax for column_names ()"
X<3001>
=item *
3002 "EHR - getline_hr () called before column_names ()"
X<3002>
=item *
3003 "EHR - bind_columns () and column_names () fields count mismatch"
X<3003>
=item *
3004 "EHR - bind_columns () only accepts refs to scalars"
X<3004>
=item *
3006 "EHR - bind_columns () did not pass enough refs for parsed fields"
X<3006>
=item *
3007 "EHR - bind_columns needs refs to writable scalars"
X<3007>
=item *
3008 "EHR - unexpected error in bound fields"
X<3008>
=back
=head1 SEE ALSO
L<perl>, L<IO::File>, L<IO::Handle>, L<IO::Wrap>, L<Text::CSV>,
L<Text::CSV_PP>, L<Text::CSV::Encoded>, L<Text::CSV::Separator>, and
L<Spreadsheet::Read>.
=head1 AUTHORS and MAINTAINERS
Alan Citterman F<E<lt>alan@mfgrtl.comE<gt>> wrote the original Perl module.
Please don't send mail concerning Text::CSV_XS to Alan, as he's not
involved in the C part which is now the main part of the module.
Jochen Wiedmann F<E<lt>joe@ispsoft.deE<gt>> rewrote the encoding and
decoding in C by implementing a simple finite-state machine and added the
variable quote, escape and separator characters, the binary mode and the
print and getline methods. See F<ChangeLog> releases 0.10 through 0.23.
H.Merijn Brand F<E<lt>h.m.brand@xs4all.nlE<gt>> cleaned up the code, added
the field flags methods, wrote the major part of the test suite, completed
the documentation, fixed some RT bugs and added all the allow flags. See
ChangeLog releases 0.25 and on.
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2007-2012 H.Merijn Brand for PROCURA B.V. All rights reserved.
Copyright (C) 1998-2001 Jochen Wiedmann. All rights reserved.
Portions Copyright (C) 1997 Alan Citterman. All rights reserved.
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
=for elvis
:ex:se gw=75|color guide #ff0000:
=cut
We can't make this file beautiful and searchable because it's too large.
col0,objID,ra,dec,run,rerun,camcol,field,type,modelMag_g,modelMagErr_g,modelMag_r,modelMagErr_r,petroMag_g,petroMagErr_g,petroMag_r,petroMagErr_r,imgx,imgy,R50_r,R90_r,conc_r,gain_r,Zero_point_r,global_background_r,isoA_g,isoA_r,isoA_i,isoB_g,isoB_r,isoB_i,isoPhi_g,isoPhi_r,isoPhi_i
nyu991,588015508750336143,40.75988872,-0.40605991,3325,41,3,380,GALAXY,17.828272,7.640317E-3,16.992243,6.022591E-3,17.915073,0.012378,17.082411,9.120655E-3,236.037903,741.416565,4.605135,13.53264,2.938598,4.72,28.11362212,53.9,14.516088,19.088224,22.634291,13.082235,16.485048,20.386726,86.727028,44.593842,41.01582
nyu978,588015508748697669,36.97947023,-0.41202432,3325,41,3,355,GALAXY,17.065714,5.177604E-3,16.162111,3.855909E-3,17.044231,0.039998,16.221395,0.037323,182.233398,401.442902,6.261499,20.620792,3.293268,4.72,28.11362365,53.9,32.021362,34.736507,39.070763,17.14992,20.802217,22.339069,59.196217,56.018269,59.167229
nyu96363,587731186192744693,334.47955442,-0.09609518,2662,40,3,112,GALAXY,18.422754,9.415771E-3,17.42827,6.369738E-3,18.451418,0.0179,17.467381,0.013363,1102.31445,674.868225,3.926911,12.185384,3.103045,4.72,28.26812997,107.8,14.143827,16.583647,19.678926,9.93926,13.913304,14.821825,24.53668,19.333796,15.967127
nyu913,588015508743192696,24.41408891,-0.40799715,3325,41,3,271,GALAXY,17.096855,5.296489E-3,16.219652,3.921208E-3,17.231298,8.302781E-3,16.348614,5.83509E-3,218.387085,501.920685,5.338241,14.941984,2.799047,4.72,28.11362819,107.8,21.228456,27.349524,29.68833,13.820395,16.874765,18.235693,161.812393,163.702957,162.156967
nyu909,588015508743127144,24.36207424,-0.41850188,3325,41,3,270,GALAXY,15.679731,3.052214E-3,14.847991,2.487201E-3,15.784685,4.900397E-3,14.953416,4.454789E-3,122.83876,1390.09558,8.973254,28.501976,3.176326,4.72,28.1136282,107.8,37.0117,48.454998,51.309032,31.427732,38.708435,42.527191,172.892044,177.859573,4.14965
nyu896,588015508741750903,21.14783278,-0.40424896,3325,41,3,249,GALAXY,17.044312,5.288357E-3,16.156908,3.89068E-3,17.039932,9.763163E-3,16.141596,7.230165E-3,251.305527,752.586853,6.766721,22.356573,3.3039,4.72,28.11362927,107.8,21.893284,29.302055,32.207714,20.532335,27.367714,28.767445,8.78721,19.380329,17.221668
nyu8921,588015507682820253,54.93283711,-1.21014289,3325,41,1,475,GALAXY,18.703083,0.016174,17.753452,8.233503E-3,18.715317,0.032342,17.781681,0.015602,556.208862,280.142853,4.436778,12.657597,2.85288,4.71,28.12542351,53.9,13.259847,15.849418,15.769395,9.17126,12.425139,14.374387,163.063385,172.211578,155.063278
nyu8908,588015507682623675,54.59705023,-1.18406188,3325,41,1,472,GALAXY,16.116943,4.199169E-3,15.067173,2.693168E-3,16.259024,8.617171E-3,15.205726,5.388662E-3,793.171814,1311.0271,10.797053,32.679169,3.026675,4.71,28.12542379,53.9,35.719021,50.672401,61.906925,27.044868,35.330662,41.72543,116.257751,121.226753,124.028099
nyu8845,588015507682295979,53.81411231,-1.22858929,3325,41,1,467,GALAXY,15.539069,3.54471E-3,14.442595,2.344147E-3,15.713324,6.559432E-3,14.639666,4.831066E-3,387.973633,999.148376,14.488215,43.014725,2.968946,4.71,28.12542427,53.9,51.419151,78.762718,84.215286,31.782448,37.061398,43.275162,160.756561,159.591888,159.144867
nyu882,588015508740374596,18.03597634,-0.41021024,3325,41,3,228,GALAXY,14.652761,2.27852E-3,13.840457,1.990911E-3,14.665345,2.777593E-3,13.929375,2.072943E-3,196.308563,1046.29321,16.192522,47.178452,2.913595,4.72,28.11363049,107.8,64.090073,71.9282,73.98555,52.135735,56.255878,60.202179,89.900787,90.656281,93.139854
nyu8767,588015507682033850,53.1857174,-1.15355732,3325,41,1,463,GALAXY,16.203541,3.929169E-3,15.215071,2.748502E-3,16.304825,7.661761E-3,15.319785,6.003815E-3,1070.427,730.963684,8.144292,23.208134,2.84962,4.71,28.12542449,53.9,35.61758,40.104652,42.153976,17.138103,21.428684,25.757242,103.905487,103.877983,108.759003
nyu8727,588015507681837137,52.71308534,-1.19508632,3325,41,1,460,GALAXY,16.10129,3.578406E-3,15.147333,2.606752E-3,16.160765,7.31019E-3,15.222319,6.136643E-3,693.178467,517.771667,6.880845,21.717686,3.156253,4.71,28.12542469,53.9,29.75633,37.555946,44.594574,25.611057,32.814774,39.223103,0.564803,174.895218,149.715042
nyu8720,588015507681771681,52.63943953,-1.1692098,3325,41,1,459,GALAXY,18.192348,9.988865E-3,17.208933,5.8451E-3,18.268209,0.017465,17.351078,9.129285E-3,928.437012,1209.33521,4.005391,10.827201,2.703157,4.71,28.12542477,53.9,12.382576,16.387741,18.237347,11.991362,13.313773,15.393115,120.91066,95.505051,96.349815
nyu870,588015508739915896,16.98229406,-0.41641278,3325,41,3,221,GALAXY,16.24889,4.209632E-3,15.314658,3.082885E-3,16.405548,7.615078E-3,15.479659,5.166866E-3,139.934769,995.698242,9.94244,30.043856,3.021779,4.72,28.11363077,107.8,32.865807,40.825073,44.396965,25.001286,34.024521,36.681866,127.418343,122.719917,135.915146
nyu8599,588015507681116324,51.11468828,-1.16552691,3325,41,1,449,GALAXY,17.587126,6.83027E-3,16.680582,4.450804E-3,17.618387,0.011964,16.742334,8.296787E-3,962.365173,959.235718,4.336313,13.848728,3.193664,4.71,28.12542553,53.9,17.496042,22.291943,25.492292,15.316837,19.582138,21.225891,138.850021,112.965393,106.781952
nyu8574,588015507680985186,50.84850507,-1.20241006,3325,41,1,447,GALAXY,17.064049,5.459492E-3,16.096075,3.574344E-3,17.123047,0.024774,16.177546,0.024561,627.121094,1261.6322,5.261137,17.392691,3.305881,4.71,28.12542569,53.9,26.040846,34.975025,39.198624,17.014765,22.023405,26.573122,157.582855,159.201126,159.048889
nyu8548,588015507680854107,50.50425659,-1.05356612,3325,41,1,445,GALAXY,16.291176,6.556069E-3,15.293232,3.738043E-3,16.286123,0.016656,15.30594,0.045637,1980.2262,854.263,18.804352,51.004181,2.712361,4.71,28.12542588,53.9,30.666805,39.054001,69.22467,18.198254,20.378139,22.202593,134.241913,134.21727,135.04686
nyu853,588015508738867366,14.62913539,-0.41734545,3325,41,3,205,GALAXY,17.026831,5.144693E-3,16.163218,3.931688E-3,17.045973,0.022325,16.180389,0.021569,131.020676,1380.36755,4.631451,15.932671,3.440104,4.72,28.11363153,107.8,22.703419,27.589933,-9999,19.202242,23.306965,-9999,30.369707,47.749737,-9999
nyu8515,588015507680723178,50.21718083,-1.0632099,3325,41,1,443,GALAXY,16.590605,5.548114E-3,15.704491,4.484997E-3,16.661278,7.485841E-3,15.768363,5.683941E-3,1892.44995,966.53717,5.807068,18.328518,3.156243,4.71,28.12542606,53.9,26.041922,29.737503,34.015663,17.924974,22.222435,23.721563,26.936834,18.623701,20.56208
nyu849,588015508738801701,14.43898167,-0.41199115,3325,41,3,204,GALAXY,15.858678,3.30811E-3,14.97581,2.621229E-3,15.946926,0.020362,15.070126,0.022862,179.571976,1012.66718,8.697648,28.402172,3.2655,4.72,28.1136315,107.8,37.588745,45.373997,50.343517,27.097178,34.635834,41.399841,46.911472,42.166641,23.268036
nyu8474,588015507680592014,49.92225459,-1.15957932,3325,41,1,441,GALAXY,17.098282,6.078447E-3,16.224371,3.996144E-3,17.236389,0.011368,16.370712,7.198799E-3,1016.19348,1007.43378,6.373154,17.613846,2.763756,4.71,28.12542626,53.9,20.536499,23.428423,27.516829,17.341648,21.704802,23.342161,15.428663,18.64987,2.279004
nyu8351,588015507680002119,48.51491226,-1.05972859,3325,41,1,432,GALAXY,17.262087,5.926695E-3,16.34477,3.912682E-3,17.344069,0.010529,16.418331,7.370564E-3,1924.15735,463.107422,4.576928,14.20316,3.103208,4.71,28.12542695,53.9,20.480152,27.49456,28.976768,12.369792,14.892036,17.673975,112.866112,113.68087,111.770477
nyu8350,588015507680002103,48.47848417,-1.11337292,3325,41,1,432,GALAXY,17.008945,5.509428E-3,16.117598,3.68416E-3,17.059296,9.875835E-3,16.172594,5.171811E-3,1436.47607,131.910767,6.233844,17.374359,2.787102,4.71,28.12542695,53.9,20.335979,23.676697,26.551968,18.859583,22.605164,26.394859,174.591156,166.05545,5.842508
nyu8315,588015507679740019,47.99943329,-1.16165313,3325,41,1,428,GALAXY,15.388307,4.700206E-3,14.374713,2.661396E-3,15.631477,0.018205,14.699215,0.034417,997.583984,1221.26038,21.587133,63.523865,2.942672,4.71,28.12542731,53.9,83.713387,99.622162,99.387032,28.131287,34.812737,41.004375,29.309536,28.693924,28.295534
nyu8312,588015507679805453,48.05361247,-1.06190139,3325,41,1,429,GALAXY,14.779447,2.354364E-3,13.927805,1.966569E-3,14.840862,5.884207E-3,14.019958,5.423318E-3,1904.42847,352.841034,11.589352,36.456345,3.145676,4.71,28.12542718,53.9,62.877422,77.78389,83.224243,39.817497,46.653255,51.592178,107.538567,109.058403,108.638367
nyu8259,588015507679477834,47.40872099,-1.23833328,3325,41,1,424,GALAXY,15.637481,3.283162E-3,14.749499,2.469843E-3,15.788505,0.028612,14.908681,0.032158,300.477448,1295.87146,10.058535,30.658413,3.048,4.71,28.12542756,53.9,50.341225,59.111458,64.406464,22.866882,28.9062,31.752802,138.910873,134.533234,133.580353
nyu8184,588015507679150098,46.54933104,-1.18318286,3325,41,1,419,GALAXY,16.510767,3.970302E-3,15.645462,3.015813E-3,16.638968,0.015113,15.773772,0.014107,801.782166,288.556976,3.827059,11.633152,3.039711,4.71,28.12542788,53.9,28.081711,36.06414,41.836452,18.088692,24.302387,27.869608,102.400139,100.64238,104.340698
nyu8170,588015507679019141,46.29420187,-1.07545652,3325,41,1,417,GALAXY,15.684143,3.600481E-3,14.782797,2.531331E-3,15.701966,0.010218,14.777311,3.591211E-3,1781.0188,691.370056,17.039986,46.316254,2.718092,4.71,28.12542809,53.9,55.937172,62.873264,66.575287,45.606148,51.883972,52.992779,152.330368,155.822205,155.839661
nyu8110,588015507678887987,45.95462151,-1.10374253,3325,41,1,415,GALAXY,13.92226,2.070061E-3,12.892146,1.705816E-3,13.955299,3.53468E-3,12.988889,4.254674E-3,1523.89587,326.419006,25.658323,71.423889,2.783654,4.71,28.12542821,53.9,120.409691,150.604141,175.194977,57.449215,68.2929,68.830124,140.38092,147.779251,143.105606
nyu8091,588015507678757022,45.70436949,-1.24342238,3325,41,1,413,GALAXY,16.150518,3.946434E-3,15.270954,2.890331E-3,16.22576,5.575191E-3,15.350222,3.29607E-3,254.058319,773.529785,7.111431,21.179754,2.978269,4.71,28.12542838,53.9,29.793413,36.365864,40.104317,21.7649,25.228382,27.5221,129.908432,130.718063,135.552628
nyu809,588015508735918114,7.80038789,-0.40734965,3325,41,3,160,GALAXY,14.876496,2.400096E-3,14.078642,2.096212E-3,14.953934,5.616876E-3,14.185534,4.61283E-3,220.958099,549.290833,12.919728,37.790733,2.925041,4.72,28.11363279,107.8,63.857841,72.378159,73.965118,33.832718,37.349583,40.815605,34.409454,36.771961,35.425526
nyu8045,588015507678494813,45.15626923,-1.12622555,3325,41,1,409,GALAXY,15.859753,3.456161E-3,14.96087,2.720207E-3,15.964503,0.042928,15.072757,0.039403,1319.45642,1234.86914,7.18609,23.41048,3.257749,4.71,28.12542863,53.9,46.354256,52.560238,52.510502,16.170141,19.659185,25.405045,98.841827,97.908752,101.091179
nyu8033,588015507678363706,44.84668614,-1.16667148,3325,41,1,407,GALAXY,15.766669,3.151264E-3,14.887063,2.410893E-3,15.916905,0.011107,15.017822,0.012156,951.785706,1142.70752,6.393218,20.122282,3.147442,4.71,28.12542876,53.9,37.577873,47.074444,55.077789,25.126818,34.08147,37.470932,101.630112,100.798363,102.877876
nyu800,587731185670291527,7.38506342,-0.56557228,2662,40,2,332,GALAXY,16.280272,3.671651E-3,15.397168,2.929924E-3,16.292912,6.175698E-3,15.434371,4.770285E-3,649.790039,391.217987,9.273462,29.762949,3.209476,4.6,28.25425307,107.8,31.507401,38.701286,41.82869,29.749184,35.849792,40.154888,48.484547,102.727654,81.92231
nyu798,587731185670291462,7.36038017,-0.51389665,2662,40,2,332,GALAXY,17.366638,5.010608E-3,16.476913,3.938476E-3,17.359346,7.668993E-3,16.504642,5.970717E-3,1119.56494,166.733337,3.818437,11.585781,3.034168,4.6,28.25425307,107.8,18.85059,20.87668,23.350218,14.335219,17.077856,20.040005,136.185257,126.318108,128.617569
nyu796,587731185670291543,7.40472538,-0.47176797,2662,40,2,332,GALAXY,16.554583,5.055727E-3,15.656498,3.716529E-3,16.754646,8.161699E-3,15.906216,5.989239E-3,1502.44019,569.716492,9.186326,23.743547,2.584662,4.6,28.25425307,107.8,35.764198,37.830421,41.83363,15.536927,19.261183,20.61034,12.903982,14.638862,10.589756
nyu7803,588015507676922011,41.54232606,-1.11764798,3325,41,1,385,GALAXY,17.082623,5.795587E-3,16.178535,3.85592E-3,17.186451,0.015002,16.31736,0.010765,1397.00769,1046.93652,5.790014,18.031746,3.114284,4.71,28.12543038,53.9,26.618498,37.801567,39.668816,16.406521,21.068129,24.661205,27.243593,38.405251,42.025238
nyu7780,588015507676790864,41.24378867,-1.17089519,3325,41,1,383,GALAXY,15.635632,3.009744E-3,14.797328,2.364628E-3,15.709743,7.352761E-3,14.897726,6.504297E-3,912.793823,1055.09717,7.556978,25.213564,3.336461,4.71,28.1254305,53.9,43.182171,49.505947,55.062035,29.302488,34.541859,37.407349,175.948456,175.675873,175.951202
nyu7644,588015507675676828,38.66168158,-1.13220603,3325,41,1,366,GALAXY,15.974986,3.645502E-3,15.087417,2.635679E-3,16.060896,6.407192E-3,15.178953,5.757476E-3,1265.55811,720.184204,9.042654,26.32724,2.911451,4.71,28.12543134,53.9,35.539074,43.950466,48.330032,23.920679,30.183603,34.262867,54.934734,64.613564,68.911972
nyu7643,588015507675676732,38.67270267,-1.23849445,3325,41,1,366,GALAXY,15.110402,2.556539E-3,14.26838,2.08655E-3,15.124091,3.55252E-3,14.327903,2.438436E-3,299.385925,820.449585,9.521971,30.88319,3.243361,4.71,28.12543134,53.9,45.362663,53.022884,59.026733,35.690533,41.970116,46.316395,138.374084,135.175507,139.067886
nyu7612,588015507675349079,37.92074586,-1.16769265,3325,41,1,361,GALAXY,17.126532,5.821398E-3,16.261915,3.930816E-3,17.193541,0.011372,16.354904,7.862094E-3,942.56543,790.028198,5.66367,18.19808,3.213125,4.71,28.12543178,53.9,22.592178,28.270493,31.810972,18.430071,22.934961,25.554609,41.304111,46.764229,40.220768
nyu7564,588015507674955997,37.07615514,-1.21446539,3325,41,1,355,GALAXY,17.561289,7.709912E-3,16.598753,4.559267E-3,17.682308,0.013367,16.714062,7.828371E-3,517.676392,1278.47888,4.316296,12.217534,2.83056,4.71,28.12543207,53.9,15.68902,19.950794,22.403101,12.512095,16.989796,18.914736,106.711212,138.992813,106.352737
nyu7544,588015507674955959,36.99253558,-1.13267883,3325,41,1,355,GALAXY,18.136126,9.931165E-3,17.269283,6.209795E-3,18.278597,0.070147,17.406431,0.129372,1261.26294,518.309387,4.184951,12.093334,2.889719,4.71,28.12543207,53.9,17.156378,21.662809,24.824661,7.381207,9.151271,11.263116,122.666283,118.182373,129.39357
nyu7543,588015507674955948,36.98089839,-1.09167401,3325,41,1,355,GALAXY,17.854153,8.116492E-3,16.976616,5.182146E-3,17.960619,0.013797,17.098602,7.906578E-3,1634.10083,412.538696,4.008707,11.303267,2.819679,4.71,28.12543207,53.9,14.59914,17.221413,19.954741,11.880677,14.655981,16.983566,47.836552,88.554054,96.688278
nyu7541,588015507674955940,36.96883751,-1.18435578,3325,41,1,355,GALAXY,18.268393,9.717655E-3,17.401075,6.845498E-3,18.29747,0.016197,17.445913,0.010542,791.445068,302.903625,3.285957,9.905101,3.014373,4.71,28.12543207,53.9,12.910781,14.796692,16.618967,10.860692,13.517786,14.708466,37.958248,27.970467,21.039284
nyu7540,588015507674955937,36.96653159,-1.16944193,3325,41,1,355,GALAXY,17.26465,5.985036E-3,16.375404,3.999932E-3,17.369205,0.010326,16.476397,6.21836E-3,927.030579,281.933319,4.69462,14.132296,3.010317,4.71,28.12543207,53.9,18.096491,22.174831,25.244995,16.157436,21.190756,23.22131,56.637146,23.907267,39.717873
nyu7539,588015507674955922,36.96625788,-1.15231141,3325,41,1,355,GALAXY,18.342611,0.010235,17.393194,6.163214E-3,18.484623,0.0298,17.517677,0.053534,1082.7782,279.439148,3.130252,9.039819,2.887889,4.71,28.12543207,53.9,13.565531,22.899029,24.360064,10.656743,15.67539,18.250145,40.154942,25.893562,177.105164
nyu7538,588015507674955921,36.97463175,-1.14814088,3325,41,1,355,GALAXY,18.274441,9.547105E-3,17.387218,5.979721E-3,18.289013,0.018021,17.381611,0.018157,1120.69019,355.559326,3.533489,11.723988,3.317964,4.71,28.12543207,53.9,12.100094,16.653366,16.171038,11.618444,15.02983,14.607312,101.531212,36.707859,44.985859
nyu7537,588015507674955920,36.96879913,-1.1527883,3325,41,1,355,GALAXY,16.460255,4.537156E-3,15.54355,3.079599E-3,16.462666,0.016554,15.568375,0.016924,1078.4397,302.5401,8.841763,30.649332,3.466427,4.71,28.12543207,53.9,30.633577,40.174774,51.301533,28.438374,35.556599,43.568779,21.447859,35.848034,43.329906
nyu7536,588015507674955912,36.95434147,-1.17642422,3325,41,1,355,GALAXY,17.453199,6.321391E-3,16.572762,4.2315E-3,17.542446,0.010806,16.634382,7.460365E-3,863.561646,171.125351,4.112185,13.058776,3.175629,4.71,28.12543207,53.9,16.840063,21.507248,22.163706,13.810561,18.945007,21.198341,47.219479,59.703865,39.683449
nyu7535,588015507674890334,36.9407491,-1.15392902,3325,41,1,354,GALAXY,17.065622,4.388836E-3,16.303484,3.655338E-3,16.86376,4.153133E-3,16.306013,0.01276,1068.08533,1408.57178,2.856023,6.203897,2.172215,4.71,28.12543208,53.9,11.978453,9.249108,13.367089,11.574677,9.174897,12.350693,131.571228,92.406914,146.443954
nyu7534,588015507674955891,36.94302602,-1.16751808,3325,41,1,355,GALAXY,17.496456,7.27999E-3,16.612467,4.653132E-3,17.558846,0.015469,16.657877,8.641963E-3,944.538879,68.260124,5.876792,18.393473,3.129849,4.71,28.12543207,53.9,18.844763,26.197611,30.362642,16.484522,19.939072,20.867777,166.146225,175.98642,159.367493
nyu7472,588015507674562767,36.1599224,-1.13404016,3325,41,1,349,GALAXY,16.20779,4.063583E-3,15.295351,2.855246E-3,16.357052,0.014643,15.468626,0.014152,1248.91577,1116.31458,7.58839,22.707695,2.992426,4.71,28.12543246,53.9,33.732243,41.657551,45.731014,21.30954,27.616249,31.670906,176.622253,173.307266,176.867966
nyu7459,588015507674562740,36.06909049,-1.15608116,3325,41,1,349,GALAXY,17.810329,0.029427,16.722746,5.526616E-3,17.872887,0.016241,17.006254,0.01108,1048.6283,290.53949,4.858154,13.262918,2.730032,4.71,28.12543246,53.9,30.947191,33.509125,35.031445,8.499827,10.668516,12.93892,58.00259,58.461807,56.365208
nyu741,587731185669832788,6.31572365,-0.57142861,2662,40,2,325,GALAXY,17.007437,5.319945E-3,16.221247,3.966422E-3,17.111122,8.703759E-3,16.341284,7.898608E-3,596.819946,197.815796,4.894259,14.311666,2.924174,4.6,28.25425261,107.8,23.907919,24.976431,29.315569,11.625863,13.816551,14.656245,99.673225,100.932793,97.583603
nyu735,587731185669767242,6.16968408,-0.50554552,2662,40,2,324,GALAXY,16.527941,4.054115E-3,15.69641,3.27288E-3,16.645939,8.427002E-3,15.863453,5.637113E-3,1195.70532,231.115204,6.848695,21.653759,3.161735,4.6,28.25425264,107.8,33.397858,40.418381,45.562637,28.292007,30.423035,31.781563,91.531357,75.320618,84.492966
nyu7261,588015507672596607,31.6478227,-1.07905462,3325,41,1,319,GALAXY,18.333941,9.052679E-3,17.449255,5.947728E-3,18.362362,0.019659,17.490005,0.015974,1749.27563,929.691101,2.529197,7.320628,2.894448,4.71,28.12543403,53.9,12.377392,16.251974,19.255795,7.899607,10.590804,14.122125,152.360321,157.139114,150.350662
nyu7225,588015507672400024,31.13430214,-1.15911246,3325,41,1,316,GALAXY,16.856634,5.210866E-3,15.932881,3.486916E-3,16.787739,0.023181,15.863009,0.023334,1021.11212,344.454865,8.429624,24.58371,2.916347,4.71,28.12543425,53.9,42.594738,50.191696,46.148212,10.257629,12.635089,15.843605,104.247681,102.289108,102.396881
nyu7194,588015507672203483,30.68859893,-1.09902768,3325,41,1,313,GALAXY,16.144585,4.106996E-3,15.255112,2.883007E-3,16.245178,7.713519E-3,15.35793,3.966375E-3,1567.448,375.954529,10.235088,28.180925,2.753364,4.71,28.12543443,53.9,36.578472,42.43932,45.710968,26.601149,31.31595,32.847767,126.427307,123.595581,122.604683
nyu7193,588015507672203480,30.68272476,-1.2053271,3325,41,1,313,GALAXY,16.929325,5.387898E-3,16.003258,3.755756E-3,16.99028,0.024671,16.103104,0.018512,601.024902,322.584961,4.96902,15.392728,3.097739,4.71,28.12543443,53.9,27.055195,30.884867,33.92561,11.3,14.02072,15.482008,125.987602,126.46302,128.795639
nyu7191,588015507672203467,30.65802747,-1.09909052,3325,41,1,313,GALAXY,17.043821,5.324952E-3,16.204025,3.755579E-3,17.098511,0.01213,16.253004,9.862239E-3,1566.87329,98.048714,4.940355,16.592367,3.358537,4.71,28.12543443,53.9,24.088871,28.530518,31.553436,15.86779,19.360682,19.930429,41.503754,42.932327,36.285702
nyu7181,588015507672137802,30.58446117,-1.11079566,3325,41,1,312,GALAXY,16.932133,4.353475E-3,16.103302,3.50405E-3,16.757717,0.037669,16.142567,0.041673,1460.43079,790.320862,3.125236,5.85323,1.872892,4.71,28.12543452,53.9,9.39049,9.245359,11.272809,8.356007,8.977247,10.831274,130.295532,7.403826,139.445694
nyu718035,587734305956102379,343.82066393,0.88883974,3388,40,6,211,GALAXY,17.075743,5.338642E-3,16.167843,4.039048E-3,17.277107,0.015854,16.386122,0.016883,525.377258,1212.64929,6.431097,17.978302,2.795527,4.895,28.24104825,107.8,26.382505,30.73889,34.216381,12.005783,14.587571,17.665741,29.187006,28.529097,28.478361
nyu7180,588015507672137765,30.57201125,-1.12784696,3325,41,1,312,GALAXY,14.525596,2.354199E-3,13.603712,1.953683E-3,14.663016,5.841797E-3,13.736765,4.264993E-3,1305.39539,677.140686,18.839581,57.447491,3.049298,4.71,28.12543452,53.9,75.830055,101.531761,106.99234,48.228722,60.294163,62.162262,57.319374,57.33699,54.984417
nyu717963,587734305955512513,342.45368716,0.96183048,3388,40,6,202,GALAXY,16.698578,4.223524E-3,15.798492,3.308051E-3,16.731058,7.38263E-3,15.814257,5.31564E-3,1189.11523,1033.82874,7.528512,24.406027,3.241813,4.895,28.24104773,107.8,26.273216,32.481422,35.97192,22.653799,28.439123,32.168476,105.288986,112.924347,89.670639
nyu717897,587734305955053826,341.44686292,0.97439185,3388,40,6,195,GALAXY,17.726173,8.037873E-3,16.82272,6.297905E-3,17.848875,0.011887,16.959139,0.010114,1303.82959,1408.02234,3.803001,10.372618,2.727482,4.895,28.24104688,107.8,15.39708,18.486031,19.797134,8.872833,11.221629,13.562783,71.299797,72.17646,81.755508
nyu717875,587734305954791718,340.7546763,0.93434463,3388,40,6,191,GALAXY,18.178663,0.01479,17.199718,9.858041E-3,18.171858,0.041149,17.22138,0.169824,939.504395,559.688965,12.558166,32.933624,2.622487,4.895,28.24104654,107.8,36.222366,43.593212,43.13953,7.320021,9.018792,9.644798,148.42572,145.528412,147.849426
nyu717870,587734305954791645,340.79936097,0.97306602,3388,40,6,191,GALAXY,18.44058,9.100792E-3,17.523403,6.663291E-3,18.386654,0.023674,17.504869,0.024811,1291.54419,965.821716,4.151458,13.683883,3.296163,4.895,28.24104654,107.8,13.164739,17.850744,18.743093,11.658716,15.04417,16.797787,101.3433,105.770973,76.016968
nyu717869,587734305954791620,340.7763128,0.97080841,3388,40,6,191,GALAXY,16.942326,5.021397E-3,15.932332,3.68685E-3,17.16917,0.011735,16.16272,0.013962,1271.01648,756.288208,6.732827,18.510971,2.749361,4.895,28.24104654,107.8,29.306114,34.966965,40.258018,10.658416,12.636282,14.189712,11.217933,13.345242,9.837334
nyu717862,587734305954791560,340.71515388,0.86854384,3388,40,6,191,GALAXY,18.431818,9.094901E-3,17.480587,6.510199E-3,18.524487,0.020528,17.607248,0.016083,341.198669,200.594833,3.341785,9.270742,2.774189,4.895,28.24104654,107.8,11.20691,13.13349,16.04867,9.465838,12.660172,14.127491,70.066391,20.548376,44.456696
nyu717859,587734305954791466,340.75188953,0.99068707,3388,40,6,191,GALAXY,17.016024,5.719976E-3,16.034784,4.258475E-3,17.292114,0.240765,16.225492,0.742279,1451.69922,534.193054,8.270474,24.402277,2.950529,4.895,28.24104654,107.8,22.368422,34.401875,33.877022,15.784448,20.387665,22.508266,150.400604,154.620438,163.654037
nyu717849,587734305954726027,340.59525252,0.89671382,3388,40,6,190,GALAXY,17.29047,5.094533E-3,16.289963,3.796966E-3,17.3517,0.01401,16.368876,0.011876,597.340942,471.406494,4.38192,14.339266,3.272371,4.895,28.24104646,107.8,22.943857,28.664577,31.720613,16.158812,22.014015,25.16357,117.625992,115.221268,111.672867
nyu717844,587734305954660564,340.53888201,0.87900379,3388,40,6,189,GALAXY,17.8853,6.752583E-3,16.945732,4.982969E-3,17.946198,0.010691,17.009453,8.33399E-3,436.354828,1319.98291,3.949073,11.961161,3.028853,4.895,28.24104619,107.8,14.375625,18.321524,20.201405,12.049765,15.991964,17.697489,100.00885,76.0215,105.110153
nyu717746,587734305953939594,338.77663376,0.86723064,3388,40,6,178,GALAXY,17.000534,5.360707E-3,16.050001,3.950636E-3,17.144423,0.010573,16.173594,7.143233E-3,329.307404,270.637817,8.10698,24.371056,3.006181,4.895,28.24104532,161.7,23.064754,28.935703,32.675854,21.040586,27.346237,29.058392,46.405636,94.590233,106.793839
nyu717727,587734305953808609,338.55146543,0.99224467,3388,40,6,176,GALAXY,16.295887,3.800083E-3,15.26438,2.909355E-3,16.466711,0.036739,15.446115,0.043291,1465.78979,945.214478,8.416569,25.280426,3.00365,4.895,28.2410453,107.8,46.106339,58.438641,57.798435,12.581544,15.168633,19.062712,114.475433,115.639961,117.001518
nyu717721,587734305953808527,338.46157922,0.86147403,3388,40,6,176,GALAXY,17.530514,5.597656E-3,16.632589,4.301811E-3,17.569843,8.94531E-3,16.682438,7.189358E-3,276.900208,128.404907,3.949167,12.225742,3.095777,4.895,28.2410453,107.8,17.334841,21.391605,25.114933,11.082114,12.876894,13.652843,106.881561,100.823357,95.830338
nyu7176,588015507672137888,30.53323507,-1.15650788,3325,41,1,312,GALAXY,17.202539,5.110611E-3,16.329222,3.763253E-3,17.253437,6.46114E-3,16.410479,4.404015E-3,1044.79138,324.650757,3.117707,8.932831,2.865193,4.71,28.12543452,53.9,14.474337,18.423494,20.364401,14.067197,17.708031,17.37302,26.529455,6.081534,0.527647
nyu717520,587734305952432301,335.3175136,0.99712398,3388,40,6,155,GALAXY,16.575256,4.342039E-3,15.624591,3.333519E-3,16.762003,0.024893,15.857355,0.028773,1510.02454,126.42067,7.741111,24.0665,3.108921,4.895,28.24104425,161.7,47.910236,51.807503,53.762909,10.175375,12.318017,13.474116,45.005241,41.993958,43.273823
nyu717418,587734305951580329,333.38261945,0.84926391,3388,40,6,142,GALAXY,17.235493,5.825613E-3,16.288729,4.107472E-3,17.339733,9.698481E-3,16.430624,7.508939E-3,166.020279,229.477829,5.430553,15.636505,2.879358,4.895,28.24104321,161.7,23.119743,29.585836,33.074497,14.210316,16.340921,18.127546,0.159718,0.771205,3.470914
nyu7174,588015507672072331,30.48852098,-1.13111007,3325,41,1,311,GALAXY,16.038433,3.808833E-3,15.16081,2.804029E-3,16.223392,0.014368,15.342113,0.011578,1275.80029,1279.15845,8.064242,22.490551,2.788923,4.71,28.12543454,53.9,38.480774,44.76091,51.236008,17.121548,22.723297,26.261412,123.289268,119.63089,117.540916
nyu717246,587734305950138443,330.10773152,0.85466838,3388,40,6,120,GALAXY,16.999195,4.77232E-3,16.113756,3.645769E-3,17.149273,0.014781,16.232477,7.613373E-3,214.940735,399.563995,5.375396,15.348252,2.855278,4.895,28.24104199,107.8,19.429222,24.611227,28.581699,16.514116,19.648962,21.697836,77.442131,63.026421,69.809479
nyu717238,587734305950073053,329.94636812,0.99513634,3388,40,6,119,GALAXY,17.477522,5.569189E-3,16.565195,4.200755E-3,17.549992,0.013118,16.653536,0.011416,1491.90002,292.990906,4.41336,12.561577,2.846262,4.895,28.24104191,161.7,18.017952,20.984177,23.158531,12.91187,16.816011,19.64851,51.044552,57.824615,58.134018
nyu717197,587734305949679993,329.15591022,0.95433098,3388,40,6,113,GALAXY,17.673782,5.66406E-3,16.80669,4.396483E-3,17.712496,8.22222E-3,16.849237,6.413317E-3,1121.37952,1273.18457,3.445899,9.498525,2.756472,4.895,28.24104118,161.7,14.308873,16.453058,16.675131,10.560301,12.500259,15.904909,67.884209,66.264267,115.089287
nyu717092,587734305949089967,327.67642529,0.91198684,3388,40,6,104,GALAXY,15.393624,3.14336E-3,14.235366,2.278702E-3,15.233089,4.905312E-3,14.15943,3.369661E-3,736.123352,72.045067,21.468618,58.123348,2.707363,4.895,28.24104022,161.7,76.458557,91.837021,85.614922,34.969467,42.933838,48.03355,17.452467,18.733078,19.068478
nyu7169,588015507672072220,30.43080482,-1.06981776,3325,41,1,311,GALAXY,15.418863,3.02013E-3,14.522944,2.297517E-3,15.523031,4.976222E-3,14.640064,3.47157E-3,1833.0498,754.521545,11.053183,33.774117,3.055601,4.71,28.12543454,53.9,44.120686,52.170433,56.493362,35.242977,43.075558,46.92448,28.662674,26.94615,33.501419
nyu716204,587734305419034858,343.35283714,0.52996318,3388,40,5,208,GALAXY,17.703587,7.616395E-3,16.73344,5.235862E-3,17.79143,0.011927,16.81601,8.503637E-3,1080.41858,1042.42505,4.677509,14.069524,3.007909,4.725,28.28196536,161.7,20.349316,24.083733,24.762426,10.646158,12.774558,15.862942,88.545853,85.330025,90.011497
nyu7162,588015507672072273,30.38303387,-1.10472718,3325,41,1,311,GALAXY,16.915535,6.577494E-3,16.158131,4.471369E-3,17.15757,0.013692,16.379705,8.193758E-3,1515.66089,320.23703,8.731621,22.777061,2.608572,4.71,28.12543454,53.9,26.10375,30.406427,34.0797,16.743704,20.111475,24.416656,179.135315,179.691879,4.8792
nyu716079,587734305417920883,340.83513075,0.52476658,3388,40,5,191,GALAXY,17.876846,6.739563E-3,16.933434,4.901273E-3,17.980553,9.788545E-3,17.062391,6.930762E-3,1033.33179,1291.25537,3.521875,9.659414,2.742691,4.725,28.28196411,161.7,13.008284,16.041241,19.008947,11.874731,14.403291,16.86754,45.657936,168.764023,174.503036
nyu716075,587734305417920851,340.81047483,0.48494582,3388,40,5,191,GALAXY,17.034061,6.561453E-3,16.126398,6.327113E-3,17.14015,0.024382,16.236773,0.024229,671.338562,1067.27454,4.58875,14.256691,3.106879,4.725,28.28196411,161.7,24.885532,30.248051,34.283852,13.473083,19.770769,21.887354,122.347771,119.919441,121.314346
nyu716068,587734305417920690,340.83729927,0.47337767,3388,40,5,191,GALAXY,15.604093,2.923785E-3,14.704806,2.419509E-3,15.754213,0.020886,14.854506,0.020267,566.193481,1311.19971,9.036155,27.191355,3.009173,4.725,28.28196411,161.7,45.418247,53.894707,56.834824,24.302069,31.786669,38.975117,19.026161,14.768555,13.281061
nyu716067,587734305417920689,340.83200604,0.45893052,3388,40,5,191,GALAXY,16.177378,3.408816E-3,15.209321,2.690438E-3,16.184977,0.011537,15.224747,0.010839,434.883392,1263.13538,7.745915,27.514811,3.552171,4.725,28.28196411,161.7,32.645874,43.95108,48.23016,30.433846,37.717896,42.582397,127.086273,128.217804,137.306366
nyu716065,587734305417920663,340.80150481,0.42656694,3388,40,5,191,GALAXY,16.490622,3.697304E-3,15.59394,2.997466E-3,16.617777,0.02221,15.725156,0.021917,140.795349,985.956421,4.573817,14.436104,3.156249,4.725,28.28196411,161.7,30.771748,34.856735,37.440628,18.58807,26.250599,30.91408,159.748734,157.089813,167.359726
nyu715924,587734305416675538,337.95781375,0.44710344,3388,40,5,172,GALAXY,17.275003,9.834145E-3,16.295881,5.615549E-3,17.200752,0.091595,16.261572,0.067045,327.559845,993.150879,13.01722,41.252651,3.169083,4.725,28.28196274,161.7,65.175011,70.691315,73.519447,9.140939,11.970955,13.626106,48.418171,47.334549,50.323563
nyu715864,587734305416282424,337.07972756,0.59089309,3388,40,5,166,GALAXY,17.788483,8.654998E-3,16.922091,7.267969E-3,17.905445,0.014693,17.024456,0.013087,1634.5509,1175.78271,4.107838,11.580285,2.819071,4.725,28.28196233,161.7,19.452482,21.232018,24.87112,8.32212,10.935209,12.538875,37.327053,37.593201,40.375275
nyu715860,587734305416282350,337.05272247,0.54320909,3388,40,5,166,GALAXY,15.265753,2.6968E-3,14.29976,2.167915E-3,15.387481,4.967737E-3,14.416411,3.987315E-3,1201.17615,930.498901,15.048294,45.889359,3.049472,4.725,28.28196233,161.7,49.641575,63.352657,71.128777,42.936722,54.032776,61.177055,100.456367,106.043121,107.49987
nyu715830,587734305416085569,336.52854568,0.5158963,3388,40,5,163,GALAXY,17.895523,6.598503E-3,16.979799,4.874751E-3,17.94969,0.016496,17.032166,0.0145,952.701355,248.072052,3.369813,10.409696,3.089102,4.725,28.28196216,161.7,15.538874,21.432495,28.581451,12.035189,15.563682,16.923201,17.903654,20.59762,26.042486
nyu715742,587734305415561419,335.34041114,0.46782104,3388,40,5,155,GALAXY,17.747515,7.405552E-3,16.816017,5.277122E-3,17.824158,0.014111,16.91855,9.918183E-3,515.490479,335.299835,5.801047,15.938116,2.747455,4.725,28.28196161,161.7,16.507347,19.87064,21.31505,15.3858,18.627825,19.759535,48.307018,46.694942,89.874626
nyu715584,587734305414316387,332.61196701,0.5358431,3388,40,5,136,GALAXY,18.562803,9.471469E-3,17.620213,6.655061E-3,18.644011,0.047584,17.700155,0.084208,1133.86877,1389.59949,3.209293,8.368927,2.607717,4.725,28.28196012,161.7,12.20997,13.482465,19.180151,6.067522,8.318683,8.259279,128.611145,133.380661,137.935822
nyu715459,587734305413333319,330.31330434,0.53230033,3388,40,5,121,GALAXY,17.171055,5.43336E-3,16.279261,4.058287E-3,17.264286,0.010138,16.374098,8.241027E-3,1101.51807,907.302124,6.4116,19.718744,3.07548,4.725,28.28195882,161.7,21.301886,28.586166,31.658594,17.061628,22.975903,26.231186,120.155144,136.496902,143.34404
nyu715344,587734305412415785,328.24718956,0.56688022,3388,40,5,107,GALAXY,17.339598,5.558806E-3,16.307608,3.946544E-3,17.425671,0.058162,16.437466,0.048949,1416.45264,1177.73596,5.120949,15.571703,3.040784,4.725,28.28195789,161.7,29.446478,33.670021,39.843025,10.915143,13.950193,16.575886,128.594238,126.799377,128.969055
nyu715307,587734305412088182,327.51871034,0.44257396,3388,40,5,102,GALAXY,16.894503,4.703891E-3,15.86092,3.378366E-3,17.013777,8.158485E-3,16.004225,6.355966E-3,286.05246,1360.98376,5.956714,17.568699,2.949394,4.725,28.28195759,161.7,21.416197,26.926445,30.880447,18.703264,24.67354,27.18115,14.718795,167.053375,2.507247
nyu715306,587734305412088169,327.49855777,0.53051085,3388,40,5,102,GALAXY,17.955347,6.827824E-3,17.022858,4.952604E-3,18.029787,0.011372,17.111521,8.384627E-3,1085.39294,1177.41309,3.458424,9.131152,2.640264,4.725,28.28195759,161.7,14.750111,16.661884,17.96525,8.776219,10.957261,12.943701,73.963623,76.44281,76.124977
nyu715305,587734305412088160,327.49329474,0.54534429,3388,40,5,102,GALAXY,16.508165,3.941249E-3,15.572517,3.0383E-3,16.615244,0.014374,15.705066,0.013352,1220.23718,1129.49939,6.661397,20.855373,3.13078,4.725,28.28195759,161.7,29.934387,37.384033,42.490566,20.916792,27.237322,30.483543,177.430389,2.923897,4.748096
nyu714496,587734304881639663,342.13214312,0.17949121,3388,40,4,200,GALAXY,17.64275,6.859392E-3,16.591078,5.027077E-3,17.7094,0.037539,16.725224,0.027349,1708.3158,833.641663,5.251609,16.326073,3.108775,4.76,28.23976712,107.8,27.136923,30.298759,32.653496,10.35336,13.718588,17.64155,170.001785,170.92482,159.637466
nyu714474,587734304881508623,341.8855975,0.16397903,3388,40,4,198,GALAXY,16.484932,3.795417E-3,15.504697,3.03354E-3,16.619282,0.019935,15.656981,0.016413,1567.31714,1314.25439,5.893313,17.077578,2.897789,4.76,28.23976689,107.8,32.49041,35.289906,38.539684,13.290511,17.134897,19.667595,101.973831,99.255867,102.830963
nyu714446,587734304881246488,341.27064336,0.0683426,3388,40,4,194,GALAXY,18.239849,7.203466E-3,17.414801,5.830127E-3,18.318722,0.01428,17.489357,0.012618,698.047424,1168.43884,2.64457,6.928285,2.619816,4.76,28.23976649,107.8,11.431979,12.867699,15.391467,6.291509,7.296817,11.255302,9.313197,1.021163,2.328439
nyu714370,587734304880591050,339.66939887,0.10095572,3388,40,4,184,GALAXY,15.756421,2.933435E-3,14.776282,2.409996E-3,15.783882,8.495193E-3,14.820688,7.706443E-3,994.574646,221.540054,10.362724,34.596962,3.338597,4.76,28.23976561,107.8,42.307045,58.211662,65.64724,32.998985,41.445827,46.126217,73.334236,75.429199,70.239311
nyu714369,587734304880591037,339.65592737,0.10357819,3388,40,4,184,GALAXY,17.775204,6.163605E-3,16.829258,5.044503E-3,17.882275,0.014295,16.924442,0.015588,1018.4281,99.059761,3.065089,9.175845,2.993664,4.76,28.23976561,107.8,18.661638,21.713161,-9999,7.521727,9.910017,-9999,4.42172,2.205467,-9999
nyu714365,587734304880525614,339.64376996,0.04693046,3388,40,4,183,GALAXY,17.730297,6.836146E-3,16.81205,4.723902E-3,17.813688,0.013518,16.893551,0.011773,503.432678,1349.81946,3.294697,9.074872,2.754387,4.76,28.23976556,107.8,15.343604,18.754023,19.843039,8.733047,11.400692,13.938954,138.470657,134.877289,143.612305
nyu714254,587734304879870188,338.08110471,0.01572748,3388,40,4,173,GALAXY,17.029955,6.107049E-3,16.061579,4.508963E-3,17.208261,0.012566,16.319534,8.836713E-3,219.82515,753.862427,8.758309,24.164265,2.75901,4.76,28.23976495,161.7,30.404551,36.451477,38.197483,16.795937,20.055864,21.928585,128.237289,135.871155,132.935745
nyu714241,587734304879739090,337.79699005,0.13822113,3388,40,4,171,GALAXY,16.672312,4.099043E-3,15.767378,3.310059E-3,16.759094,0.010593,15.860566,0.010006,1333.45544,892.534607,6.494678,20.801868,3.20291,4.76,28.23976483,161.7,28.144621,35.537304,39.038387,19.48909,26.560913,30.134392,65.927795,59.545914,60.99781
nyu714226,587734304879608048,337.49016494,0.04133595,3388,40,4,169,GALAXY,18.307325,8.476763E-3,17.357552,5.911883E-3,18.360519,0.011497,17.414421,8.202055E-3,452.725983,825.578613,2.870649,7.992865,2.784341,4.76,28.23976469,161.7,10.499219,12.806738,16.324903,9.015895,12.044661,12.753986,152.065155,24.654325,164.115219
nyu714211,587734304879542601,337.30062683,0.1623494,3388,40,4,168,GALAXY,17.499794,5.937595E-3,16.572777,4.543778E-3,17.596825,9.966299E-3,16.681231,7.294852E-3,1552.96045,462.896423,4.999381,14.736693,2.947704,4.76,28.23976468,161.7,18.511017,22.535683,25.746456,13.752103,16.134777,18.228777,77.146896,76.175697,76.271973
nyu714210,587734304879542592,337.29134269,0.12291901,3388,40,4,168,GALAXY,17.785231,5.641563E-3,16.862556,4.547565E-3,17.812927,0.010444,16.900557,9.20621E-3,1194.49194,378.684479,2.50669,7.060202,2.816544,4.76,28.23976468,161.7,12.67122,16.64501,19.459908,9.406758,11.913228,13.203055,40.852001,41.507034,32.307713
nyu714209,587734304879542576,337.29065796,0.0788683,3388,40,4,168,GALAXY,16.239851,3.545321E-3,15.269409,2.810393E-3,16.277418,8.123511E-3,15.291636,6.947948E-3,793.977295,372.674194,9.053205,29.458921,3.253977,4.76,28.23976468,161.7,33.358624,45.679863,56.429115,26.123112,35.799133,38.181774,152.183777,160.919815,166.351379
nyu714208,587734304879542568,337.28364408,0.1523536,3388,40,4,168,GALAXY,18.062576,7.834307E-3,17.148188,5.900437E-3,18.131456,0.012478,17.233658,9.450462E-3,1462.09644,308.55603,3.753346,11.046985,2.943237,4.76,28.23976468,161.7,14.71864,18.748997,21.329626,10.565991,13.114965,15.309469,65.412979,79.374283,81.825516
nyu714207,587734304879542549,337.28093817,0.12094328,3388,40,4,168,GALAXY,15.952644,3.328019E-3,14.993126,2.649248E-3,16.046974,6.596662E-3,15.102942,5.797361E-3,1176.52893,284.1073,10.853597,35.153252,3.238857,4.76,28.23976468,161.7,36.25787,47.821274,53.329308,32.012001,42.679165,49.360958,112.402893,123.640694,120.523697
nyu714176,587734304879214844,336.60455844,0.14490655,3388,40,4,163,GALAXY,18.05286,7.677628E-3,17.07856,5.375552E-3,18.13143,0.011672,17.173986,0.01025,1394.23169,939.677917,3.188851,8.843087,2.773126,4.76,28.23976441,161.7,12.974606,19.044279,19.722567,9.244563,11.681874,14.906048,119.23555,124.381943,129.759872
nyu714158,587734304879149192,336.36659271,0.09492266,3388,40,4,162,GALAXY,16.949137,4.698847E-3,15.920188,3.523534E-3,17.084101,0.045806,16.063169,0.041769,939.749207,137.764908,6.030637,19.778645,3.279694,4.76,28.23976439,161.7,42.143562,52.976566,56.149651,12.268622,16.714911,18.947359,11.42969,10.532449,10.563426
nyu714071,587734304878428368,334.7363207,0.05221515,3388,40,4,151,GALAXY,17.091274,5.002664E-3,16.089516,3.739307E-3,17.194988,8.461428E-3,16.215931,6.133878E-3,551.640381,288.562408,5.78537,16.384233,2.832011,4.76,28.23976364,161.7,23.080303,36.171913,40.175804,16.342896,18.760559,21.735563,123.201813,117.5196,115.158287
nyu714060,587734304878297215,334.42342874,0.15211312,3388,40,4,149,GALAXY,16.8617,4.83406E-3,16.01049,3.86348E-3,16.932531,8.843441E-3,16.103678,7.170966E-3,1459.82251,165.606644,8.387941,24.83218,2.960462,4.76,28.23976354,161.7,24.14176,30.359367,33.827072,24.027075,27.273964,30.969168,84.115913,57.934326,74.644737
nyu713883,587734304877052121,331.64573448,0.0576804,3388,40,4,130,GALAXY,16.005325,3.851044E-3,15.158066,3.097763E-3,16.309944,0.048519,15.465001,0.044563,600.857727,772.213257,9.93325,28.745041,2.89382,4.76,28.23976252,161.7,39.936745,52.29673,71.064735,24.242462,34.688679,38.849445,22.042421,27.744371,50.565132
nyu713828,587734304876593366,330.53610171,0.1208412,3388,40,4,123,GALAXY,17.52981,6.49173E-3,16.600891,4.882556E-3,17.421717,0.013707,16.531528,0.010815,1175.02979,211.634613,8.179575,21.608896,2.641812,4.76,28.23976198,107.8,30.43922,31.950212,35.903454,11.07022,14.444475,14.756337,7.614708,2.504798,175.279816
nyu713819,587734304876528063,330.50677026,0.12980665,3388,40,4,122,GALAXY,15.858955,3.205733E-3,14.88767,2.570714E-3,16.031569,5.824524E-3,15.070911,6.655264E-3,1256.61963,1305.93298,10.104235,28.041859,2.775258,4.76,28.23976185,107.8,36.874081,46.548561,50.78109,25.907269,32.899265,38.897877,109.297577,100.894272,97.788551
nyu713818,587734304876528052,330.50354521,0.0987378,3388,40,4,122,GALAXY,17.404095,5.164126E-3,16.529282,4.095331E-3,17.491735,8.993605E-3,16.623333,7.449126E-3,974.131348,1276.76953,3.821233,10.852809,2.840133,4.76,28.23976185,107.8,17.527327,21.038078,24.54524,13.201065,16.828913,18.94503,131.622009,148.887955,139.245163
nyu713706,587734304875675889,328.42794448,0.13988466,3388,40,4,109,GALAXY,16.041113,3.513113E-3,15.114887,2.831792E-3,16.205082,0.024745,15.307961,0.024839,1348.72986,100.153107,9.708577,27.137896,2.795249,4.76,28.23976042,161.7,45.376316,59.321754,58.089996,16.405294,20.996578,24.357307,55.418457,56.304367,55.295475
nyu7130,588015507671744662,29.72865968,-1.24432959,3325,41,1,306,GALAXY,17.525337,7.039834E-3,16.683243,4.745957E-3,17.426334,0.017226,16.632357,0.011673,246.621201,1176.82043,6.188756,21.448132,3.465662,4.71,28.12543479,53.9,22.554499,28.572731,34.258862,15.867701,21.259844,23.334589,177.647995,0.787415,177.090073
nyu713,587731185669636134,5.90740286,-0.5031298,2662,40,2,322,GALAXY,16.211496,3.815196E-3,15.291249,2.934291E-3,16.322264,0.065142,15.407733,0.033202,1217.56848,568.804138,9.408532,30.54196,3.246198,4.6,28.25425265,107.8,45.351757,58.368496,60.886822,21.837189,27.644896,28.317696,41.825504,40.402737,50.136333
nyu712993,587734304345948409,344.84410346,-0.38373706,3388,40,3,218,GALAXY,16.99662,4.478098E-3,16.107279,3.558893E-3,17.071426,0.020748,16.179016,0.019593,403.885284,991.268494,4.481499,14.796994,3.301796,4.72,28.27325463,161.7,25.050121,33.751537,38.853226,19.411501,27.197418,29.865026,111.43837,118.700958,121.101318
nyu712971,587734304345620557,344.09496132,-0.2829621,3388,40,3,213,GALAXY,16.740286,4.381683E-3,15.796062,3.340343E-3,16.854942,9.21972E-3,15.903603,8.780909E-3,1320.00879,986.027283,6.784813,21.723631,3.201802,4.72,28.27325411,161.7,28.759312,39.360317,38.972992,18.207159,24.279865,27.890192,32.4562,36.53397,31.569014
nyu712963,587734304345489681,343.82675079,-0.40199282,3388,40,3,211,GALAXY,17.891659,6.479154E-3,16.943939,4.780677E-3,18.009016,0.014645,17.042528,0.015075,238.097137,1270.10461,3.103046,8.817171,2.841457,4.72,28.27325407,161.7,14.606713,19.976404,21.157766,6.961244,9.404826,11.805007,82.298431,80.90744,86.873878
nyu712960,587734304345489640,343.79180776,-0.40940158,3388,40,3,211,GALAXY,15.988199,3.281433E-3,15.003721,2.58041E-3,15.975071,5.721219E-3,14.970435,4.628705E-3,170.81015,952.429016,10.952478,38.140049,3.482321,4.72,28.27325407,161.7,37.027931,50.674816,56.049259,34.213303,45.15424,47.448483,63.593941,76.281967,79.061882
nyu712958,587734304345489624,343.77310077,-0.41500282,3388,40,3,211,GALAXY,16.677799,4.114763E-3,15.686708,3.183091E-3,16.806833,0.032787,15.80484,0.032083,119.934807,782.361755,5.311255,15.467252,2.912165,4.72,28.27325407,161.7,27.955957,30.051613,33.073368,11.910986,18.107317,22.860104,121.682899,119.182518,108.872887
nyu712956,587734304345489591,343.75887868,-0.37842228,3388,40,3,211,GALAXY,16.868704,4.756799E-3,15.896088,3.540772E-3,16.933565,8.476523E-3,15.970532,6.088588E-3,452.383789,652.996948,7.62227,23.422085,3.072849,4.72,28.27325407,161.7,25.403744,31.334625,36.992577,20.280825,28.117065,31.22868,111.822006,122.038551,119.978333
nyu712955,587734304345489580,343.73545971,-0.41375382,3388,40,3,211,GALAXY,18.131121,9.156992E-3,17.151051,7.9997E-3,18.176651,0.015027,17.238693,0.010181,131.323257,440.143097,4.002365,11.331696,2.83125,4.72,28.27325407,161.7,16.797169,18.263147,20.602627,9.241365,11.43468,12.571676,1.642401,178.532944,2.890095
nyu712954,587734304345489555,343.71688663,-0.36844389,3388,40,3,211,GALAXY,17.957296,7.164032E-3,16.952248,5.067387E-3,17.953608,0.015161,16.968843,0.01154,543.126038,271.203644,4.251616,13.785057,3.24231,4.72,28.27325407,161.7,15.378073,20.418104,22.487646,13.117824,19.366859,22.137186,84.826538,115.593918,144.248581
nyu712953,587734304345489535,343.70552127,-0.35628498,3388,40,3,211,GALAXY,16.353941,3.647092E-3,15.33799,2.804232E-3,16.387556,6.182267E-3,15.368305,4.759881E-3,653.663208,167.850479,7.67302,25.908495,3.376571,4.72,28.27325407,161.7,29.440548,40.292206,45.78196,26.225061,34.941341,39.491005,172.208481,10.598512,4.039213
nyu712952,587734304345489531,343.69967439,-0.38443783,3388,40,3,211,GALAXY,17.949455,8.644942E-3,16.972948,5.902918E-3,18.130859,0.014015,17.136038,0.010999,397.772095,114.748123,4.499975,12.63641,2.808107,4.72,28.27325407,161.7,14.506558,18.927071,22.264986,10.369539,14.008369,16.273108,145.508331,149.042618,154.070816
nyu712946,587731185659871245,343.55620114,-0.41961688,2662,40,2,173,GALAXY,16.823277,5.233585E-3,15.884698,3.764762E-3,16.907404,1.051882,15.927148,0.817069,1974.5293,167.958878,8.371346,25.352345,3.028467,4.6,28.25424461,107.8,26.894651,34.844288,42.87579,20.293211,26.28853,33.011101,26.936796,41.343304,69.626587
nyu712857,587734304344506707,341.59359875,-0.41514672,3388,40,3,196,GALAXY,17.905867,8.079345E-3,16.991831,6.072756E-3,18.048038,0.015126,17.133898,0.011486,118.854668,1383.24377,4.900326,14.762432,3.012541,4.72,28.27325271,161.7,14.47943,18.447121,22.25104,12.918549,17.939064,20.564255,154.820892,8.32563,33.668373
nyu712775,587734304343916788,340.19159422,-0.38384001,3388,40,3,187,GALAXY,16.866993,4.861771E-3,15.892229,3.666685E-3,16.940538,0.078982,16.02597,0.062563,403.134766,886.963013,8.141729,26.319252,3.232637,4.72,28.27325212,161.7,45.811939,53.90237,57.162014,10.125918,12.759518,13.247283,160.099182,158.706818,158.526001
nyu712765,587734304343851285,340.07642482,-0.35192843,3388,40,3,186,GALAXY,17.89048,7.70223E-3,16.996006,5.74632E-3,17.965469,0.014406,17.08573,0.01126,693.206177,1200.82983,5.485859,15.994634,2.915611,4.72,28.27325219,161.7,15.342209,21.391079,24.758331,14.56346,16.599453,20.239809,143.580017,145.584488,148.858215
nyu712728,587734304343654452,339.53590312,-0.31406579,3388,40,3,183,GALAXY,16.753836,4.74141E-3,15.779329,3.50393E-3,16.94865,0.012479,15.918885,0.023216,1037.62781,369.641388,8.00802,26.425142,3.299834,4.72,28.27325198,161.7,33.345585,43.197437,51.793983,15.578836,23.660709,32.793808,49.29451,41.677299,45.090179
nyu712633,587734304342868190,337.80494498,-0.38161548,3388,40,3,171,GALAXY,16.963562,4.757041E-3,16.075218,3.731319E-3,16.941799,0.011126,16.049723,9.697847E-3,423.500916,965.984619,7.166409,24.648596,3.439463,4.72,28.27325125,161.7,26.317862,34.862576,42.264126,20.929176,26.217642,27.355227,43.498501,40.006687,39.984131
nyu712533,587734304342016094,335.86674108,-0.38754488,3388,40,3,158,GALAXY,18.431271,9.152657E-3,17.535122,6.728092E-3,18.530983,0.015662,17.613764,0.012817,369.967316,1038.69897,3.559538,10.337041,2.90404,4.72,28.2732506,161.7,11.049881,15.086173,16.976404,9.716385,12.256824,15.021594,155.941162,95.583656,123.101196
nyu712527,587734304341950697,335.72302898,-0.4070984,3388,40,3,157,GALAXY,18.842213,0.011946,17.600832,6.988508E-3,18.820635,0.028357,17.651485,0.015239,192.243515,1093.13452,3.612132,10.762479,2.979536,4.72,28.27325045,161.7,10.526967,14.269426,17.619213,9.378787,12.649496,13.781075,32.966484,28.580538,48.442566
nyu712526,587734304341950675,335.71571282,-0.40814941,3388,40,3,157,GALAXY,17.631601,5.955956E-3,16.668325,4.423983E-3,17.609137,0.02102,16.677092,0.017004,182.683563,1026.62476,4.191911,13.827983,3.29873,4.72,28.27325045,161.7,19.908831,26.712934,32.965084,13.991386,17.270069,20.238768,125.466438,122.984993,120.276199
nyu712255,587734304339722408,330.52011797,-0.38230311,3388,40,3,123,GALAXY,17.321812,6.80751E-3,16.291973,4.922858E-3,17.432428,0.034284,16.475185,0.023265,416.810028,67.68261,7.489081,23.194191,3.097068,4.72,28.27324824,161.7,35.426571,38.994968,41.564247,9.265833,12.646308,14.808298,49.701046,51.511101,47.737747
nyu712162,587734304338936089,328.85077229,-0.33786724,3388,40,3,111,GALAXY,16.817078,4.875271E-3,15.802005,3.531508E-3,16.943054,0.011087,15.951816,9.009761E-3,821.502625,1223.03296,7.823586,24.582573,3.142111,4.72,28.27324681,161.7,28.256111,36.471455,43.399532,19.409163,25.614607,29.567831,159.227295,151.654129,150.849091
nyu712116,587734304338411718,327.59196321,-0.31025044,3388,40,3,103,GALAXY,17.221214,5.499491E-3,16.127781,3.799705E-3,17.199312,0.011079,16.118141,7.189329E-3,1072.16394,667.241821,7.196611,23.523609,3.268707,4.72,28.27324601,161.7,23.307472,30.620462,35.911716,19.804571,25.408512,29.73246,21.988857,11.692161,24.49835
nyu712102,587734304338280824,327.36983494,-0.28060984,3388,40,3,101,GALAXY,18.044718,8.653336E-3,17.008345,5.855427E-3,18.086952,0.0239,17.108513,0.016058,1341.55469,1369.9259,5.546241,16.692486,3.009693,4.72,28.2732458,161.7,21.296762,25.689255,32.294079,9.8105,13.530724,15.097164,169.129456,166.83075,166.209961
nyu712,587731185669636133,5.90701123,-0.50982673,2662,40,2,322,GALAXY,15.533584,2.859734E-3,14.663252,2.350278E-3,15.672885,0.017638,14.751661,0.010433,1156.69067,565.26062,10.433021,33.870453,3.246467,4.6,28.25425265,107.8,52.655743,63.971958,68.509109,27.896797,36.10957,39.688324,29.840652,32.568386,34.421585
nyu711333,587734303808290913,342.956302,-0.8304105,3388,40,2,206,GALAXY,16.823236,5.355679E-3,15.700502,3.60835E-3,16.850649,0.011898,15.783543,7.312076E-3,157.472672,161.896454,11.261895,34.030403,3.02173,4.6,28.24582808,107.8,45.864746,54.281616,61.327835,16.261194,21.555912,23.355919,16.579365,15.574396,15.353768
nyu7113,588015507671613626,29.44267792,-1.20831345,3325,41,1,304,GALAXY,15.43786,3.032221E-3,14.517373,2.438879E-3,15.48127,0.017537,14.613186,0.017106,574.10907,1299.09082,11.11147,31.405592,2.826412,4.71,28.12543488,53.9,66.23896,68.073586,69.646439,17.354532,21.437677,24.898832,43.558731,46.345592,43.675858
nyu711241,587734303807242422,340.60307164,-0.73556945,3388,40,2,190,GALAXY,17.087873,5.55433E-3,16.178719,3.86159E-3,17.182428,0.022291,16.27684,0.02133,1019.62378,544.320923,4.697029,14.810908,3.15325,4.6,28.24582661,161.7,27.69219,30.992493,34.260269,10.610586,12.88627,15.401525,95.651047,98.583488,103.192802
nyu711207,587734303807045879,340.24270208,-0.83174883,3388,40,2,187,GALAXY,16.470995,4.13658E-3,15.505287,3.139845E-3,16.512112,7.2629E-3,15.60008,6.065599E-3,145.428772,1351.86316,8.880523,27.525661,3.099554,4.6,28.24582636,161.7,37.731342,45.7444,48.895264,21.25745,25.348713,29.032772,117.701714,121.111519,120.323517
nyu711197,587734303807045780,340.14564497,-0.7334273,3388,40,2,187,GALAXY,16.059736,3.274118E-3,15.114492,2.635858E-3,16.184685,4.657926E-3,15.253485,3.84757E-3,1038.84802,469.345978,7.006427,22.109953,3.155667,4.6,28.24582636,161.7,29.898338,40.23864,46.444405,28.447681,37.441772,44.376991,72.891235,50.763153,81.127472
nyu711174,587734303806980196,340.02176611,-0.80771109,3388,40,2,186,GALAXY,15.362966,2.603995E-3,14.388557,2.172051E-3,15.47456,0.017829,14.506626,0.018926,363.716705,704.26178,8.458899,28.858994,3.411673,4.6,28.24582624,161.7,45.917202,57.521301,63.693077,34.87196,46.877129,53.330765,67.45768,71.590096,71.575989
nyu711164,587734303806914783,339.85349633,-0.69273081,3388,40,2,185,GALAXY,17.510168,5.800835E-3,16.591442,4.388275E-3,17.580006,0.010314,16.697172,8.25699E-3,1408.93994,534.983459,4.254697,12.305249,2.892156,4.6,28.24582617,161.7,17.238791,20.879759,23.265951,13.112111,17.235479,20.806164,95.273003,111.836853,87.923401
nyu711084,587734303806259411,338.3093075,-0.82926279,3388,40,2,175,GALAXY,16.264734,3.646361E-3,15.305491,2.857814E-3,16.349924,6.397608E-3,15.408787,5.254413E-3,168.125137,107.375313,7.657625,24.538383,3.204438,4.6,28.24582537,161.7,31.003628,40.010391,46.419796,25.513945,31.714453,35.270412,105.510353,108.937057,99.995155
nyu711047,587734303805997377,337.85175201,-0.79511518,3388,40,2,171,GALAXY,17.348154,6.792532E-3,16.402689,6.582077E-3,17.368416,7.681211E-3,16.429043,5.489559E-3,478.385803,1391.69568,3.811999,12.473613,3.272197,4.6,28.24582515,161.7,17.347342,19.74852,22.891413,14.469281,18.10729,20.09514,53.733074,30.141039,65.80751
nyu710978,587734303805604070,336.84007374,-0.65349671,3388,40,2,165,GALAXY,16.95303,4.833065E-3,16.043922,3.739215E-3,16.975006,8.330366E-3,16.127268,8.207451E-3,1765.67078,359.715912,6.843176,18.155449,2.653074,4.6,28.24582486,161.7,21.668226,25.256956,27.458254,19.775774,23.303265,23.046967,159.222687,44.251945,65.671257
nyu710977,587734303805604059,336.83571732,-0.67917229,3388,40,2,165,GALAXY,17.081858,7.304232E-3,15.716124,4.048479E-3,17.06086,0.206729,15.820672,0.147554,1532.32788,320.203827,13.15457,35.570332,2.704029,4.6,28.24582486,161.7,34.65519,47.183823,51.572189,20.214958,28.572109,31.212048,48.714592,37.005352,37.324921
nyu710976,587734303805604057,336.83458977,-0.66978066,3388,40,2,165,GALAXY,16.842896,4.69576E-3,15.864569,3.51896E-3,16.910658,0.011683,15.975779,0.010379,1617.69128,309.9263,6.96971,21.7945,3.127031,4.6,28.24582486,161.7,24.908876,32.091717,32.270035,21.838776,28.926079,31.678001,82.148445,42.196838,69.059334
nyu710975,587734303805604056,336.83776366,-0.6780996,3388,40,2,165,GALAXY,15.980902,3.349643E-3,15.034672,2.710277E-3,16.036474,0.016977,15.134785,0.020418,1542.08203,338.805023,9.361745,26.609884,2.842407,4.6,28.24582486,161.7,40.78516,44.828594,49.700935,20.717749,26.584497,30.818092,42.309978,37.594181,27.095566
nyu710966,587734303805538569,336.78507004,-0.72718228,3388,40,2,164,GALAXY,15.675498,3.357776E-3,14.712592,2.647293E-3,15.856338,5.958302E-3,14.937767,4.312058E-3,1095.95337,1221.10559,14.371364,37.888199,2.636368,4.6,28.24582481,161.7,57.497784,66.190544,70.500839,26.661547,29.675686,31.803293,161.466782,159.199936,158.676437
nyu710956,587734303805538392,336.75494789,-0.65754205,3388,40,2,164,GALAXY,16.615404,4.169116E-3,15.654804,3.22785E-3,16.66502,0.075668,15.715412,0.152038,1728.86218,946.957458,7.228285,22.103546,3.057924,4.6,28.24582481,161.7,30.693087,36.349209,39.449093,18.630651,21.166792,25.16827,28.470228,22.060793,24.939371
nyu710943,587734303805472893,336.62456276,-0.75943767,3388,40,2,163,GALAXY,17.432039,5.896724E-3,16.511837,4.449936E-3,17.536827,0.030171,16.647156,0.031593,802.524231,1122.83972,5.025007,15.451505,3.074922,4.6,28.24582478,161.7,24.120161,28.978859,29.454153,11.265849,15.778993,17.997549,161.513138,161.660843,161.871185
nyu710829,587734303804424469,334.19652333,-0.83521582,3388,40,2,147,GALAXY,16.29846,3.769986E-3,15.253616,2.817681E-3,16.399336,6.023612E-3,15.35985,4.151624E-3,113.883812,826.387146,8.193171,25.500805,3.112446,4.6,28.24582376,161.7,28.833616,38.954895,46.61042,26.496544,35.349998,43.75972,123.784889,104.415207,100.758904
nyu710702,587734303803506907,332.03218246,-0.81389497,3388,40,2,133,GALAXY,17.500383,5.691146E-3,16.657618,4.437393E-3,17.567926,0.016161,16.732201,0.01625,307.205414,203.434937,3.365853,9.734412,2.892108,4.6,28.2458231,161.7,17.772724,22.227003,25.092184,10.44073,14.685907,15.602165,31.062666,28.568186,42.515118
nyu710613,587734303802917144,330.72376619,-0.78458187,3388,40,2,124,GALAXY,16.596359,4.455325E-3,15.592422,3.26761E-3,16.726658,8.801036E-3,15.736588,6.983806E-3,573.662659,557.74707,8.481572,24.879681,2.933381,4.6,28.24582234,161.7,31.614466,38.907959,40.704716,18.275787,24.455683,27.441999,47.127438,46.373642,49.000305
nyu710476,587734303802065118,328.7827395,-0.77028771,3388,40,2,111,GALAXY,16.520723,3.973525E-3,15.523348,3.025902E-3,16.613262,0.030234,15.604742,0.027202,704.114136,604.688538,6.554576,20.946199,3.195661,4.6,28.24582097,161.7,33.88686,40.854572,48.480656,16.450462,22.793488,26.324226,13.181935,14.161073,13.538782
nyu7098,588015507671548024,29.22781937,-1.11471227,3325,41,1,303,GALAXY,16.032537,3.742879E-3,15.016343,2.666582E-3,16.054932,0.030773,15.128072,0.025875,1425.04492,706.844971,9.268524,29.008238,3.129758,4.71,28.12543486,53.9,47.154999,59.214607,62.749268,22.357784,26.398237,29.725367,152.776718,156.680328,154.620056
nyu709787,587734303272272035,345.00104178,-1.09412576,3388,40,1,219,GALAXY,17.890394,7.408146E-3,16.923605,4.846978E-3,17.945658,0.019643,16.973166,0.015935,1576.30774,1055.92664,3.692091,11.632025,3.150525,4.71,28.28038601,107.8,16.50498,21.415947,25.060904,11.117593,13.959123,15.814099,0.021144,7.392245,3.946097
nyu709771,587734303272075444,344.5893846,-1.18392967,3388,40,1,216,GALAXY,14.804,2.397607E-3,13.972542,2.036036E-3,14.978069,0.012461,14.114574,0.013561,759.645142,1396.91467,11.529392,34.48711,2.991234,4.71,28.28038585,107.8,54.763618,63.912525,62.730629,35.95023,48.01886,55.243252,79.87735,83.071953,76.690033
nyu709714,587734303271551008,343.29527884,-1.21030539,3388,40,1,208,GALAXY,17.363525,5.980179E-3,16.36795,4.032427E-3,17.466728,0.031675,16.496447,0.026014,520.159363,520.463257,4.829032,14.502223,3.003133,4.71,28.28038534,161.7,23.222818,28.575909,35.895405,10.758812,14.68174,17.488338,145.90094,142.206345,140.767731
nyu709572,587734303270043845,339.8562663,-1.0897191,3388,40,1,185,GALAXY,17.349707,6.221965E-3,16.414305,4.236431E-3,17.467707,0.017344,16.548494,0.014229,1616.51404,559.504028,4.827113,14.250144,2.952105,4.71,28.28038334,161.7,22.053509,25.973436,28.262083,10.785426,14.296651,17.570282,15.815476,14.37516,11.821315
nyu709402,587734303269257397,338.04301231,-1.09301572,3388,40,1,173,GALAXY,17.094618,4.928745E-3,16.248022,0.015981,17.165899,0.020242,16.274004,0.017685,1586.49646,407.435486,4.187854,12.312937,2.940154,4.71,28.2803822,161.7,27.445576,35.619537,39.351509,10.893774,12.536957,15.419315,7.95177,6.859475,6.437325
nyu709393,587734303269191857,337.9372306,-1.10789742,3388,40,1,172,GALAXY,17.791258,8.711812E-3,16.908072,5.814196E-3,18.049202,0.027364,17.157387,0.019647,1451.27942,806.823853,5.152559,14.421516,2.798904,4.71,28.28038213,161.7,23.597736,27.143776,31.665758,8.077559,10.556897,13.703324,111.411369,108.745216,117.249382
nyu709378,587734303269126352,337.73817001,-1.17674597,3388,40,1,171,GALAXY,16.100689,3.644404E-3,15.109167,2.667761E-3,16.126257,0.014848,15.165273,0.013049,825.283386,358.492981,9.648108,31.637644,3.279155,4.71,28.28038201,161.7,38.956753,48.671177,54.647003,27.502028,38.72707,48.500381,62.070595,57.366051,59.654366
nyu709377,587734303269126346,337.73711182,-1.07921561,3388,40,1,171,GALAXY,17.126827,4.98759E-3,16.21088,3.691327E-3,17.218025,0.010147,16.306688,8.719878E-3,1712.05981,348.721191,3.912173,11.361297,2.904089,4.71,28.28038201,161.7,16.676296,21.381653,24.707661,14.796548,18.539661,19.653835,68.57505,84.211571,105.669998
nyu709375,587734303269126318,337.71759894,-1.14447274,3388,40,1,171,GALAXY,18.00079,7.475941E-3,17.087986,5.146655E-3,18.099718,0.015728,17.185759,0.011082,1118.71924,171.430191,3.25402,8.713984,2.677913,4.71,28.28038201,161.7,13.255508,14.515179,18.739527,7.540549,10.048798,11.562665,43.074253,46.940926,43.618057
nyu709370,587734303269060861,337.6895487,-1.15757758,3388,40,1,170,GALAXY,15.819597,3.760749E-3,14.855989,2.685405E-3,15.979563,0.010557,15.051015,8.053485E-3,999.487488,1277.36658,13.599271,41.601433,3.059093,4.71,28.28038189,161.7,48.922482,63.29155,74.807533,28.142366,35.659397,41.900356,58.014095,61.51524,61.299412
nyu709347,587734303268929543,337.26955415,-1.18491047,3388,40,1,168,GALAXY,15.162354,2.705346E-3,14.221393,2.151354E-3,15.28952,0.01131,14.36036,0.012369,751.121765,181.182739,13.593081,43.063679,3.168059,4.71,28.28038173,161.7,60.211201,78.211304,87.527382,36.174862,45.660748,51.028893,32.461555,33.328476,33.147572
nyu709318,587734303268733195,336.93151622,-1.13754977,3388,40,1,165,GALAXY,16.851677,5.150985E-3,15.947217,3.630718E-3,16.953623,0.010274,16.073797,7.107356E-3,1181.69104,1190.35571,7.177774,21.494921,2.99465,4.71,28.28038165,161.7,28.56214,33.614182,38.966702,17.279125,21.005436,24.173868,39.947403,41.088795,38.198372
nyu709180,587734303267881075,334.87256465,-1.16915032,3388,40,1,152,GALAXY,17.213921,5.824861E-3,16.249788,3.938198E-3,17.314907,0.01135,16.353321,8.575682E-3,894.326111,166.210861,5.588027,17.118362,3.0634,4.71,28.28038083,161.7,19.952805,27.282156,30.848253,17.260548,22.147127,24.01075,15.448849,18.607811,27.857019
nyu709176,587734303267815695,334.82224062,-1.18714563,3388,40,1,151,GALAXY,17.938187,0.014911,17.02317,6.451516E-3,17.865435,0.017718,16.93869,0.011935,730.684387,1069.72681,5.595946,14.965286,2.674309,4.71,28.28038078,161.7,20.706787,26.668537,26.326189,10.325962,12.278584,13.802305,1.00472,0.179098,179.947006
nyu709011,587734303266570401,331.90177395,-1.19981235,3388,40,1,132,GALAXY,17.222017,6.493174E-3,16.258987,5.393769E-3,17.223673,0.01839,16.302271,0.014154,615.354858,377.830048,6.006257,20.782511,3.460144,4.71,28.28037972,161.7,22.491571,30.344675,33.087986,19.841719,25.657528,29.000105,166.590607,167.072372,11.776796
nyu708806,587734303265063195,328.55702969,-1.12813005,3388,40,1,109,GALAXY,17.437492,6.145271E-3,16.429508,4.068107E-3,17.538952,0.012571,16.525475,9.291897E-3,1267.32251,1273.99634,4.573852,13.867699,3.031952,4.71,28.28037768,161.7,20.76333,25.807613,29.524672,10.240344,13.607419,15.507798,163.303406,154.170731,151.990204
nyu708707,587734303264473385,327.19644912,-1.17105603,3388,40,1,100,GALAXY,16.971003,4.744694E-3,16.002079,3.525574E-3,17.038635,6.771061E-3,16.063297,5.93796E-3,876.903442,1154.14722,4.289907,12.671445,2.95378,4.71,28.28037668,161.7,18.687977,24.312632,26.854055,13.139734,15.441973,18.009785,40.052063,38.898277,38.746857
nyu708558,588015510368354500,57.67472173,1.04075277,3325,41,6,493,GALAXY,16.033234,3.400471E-3,15.041431,2.529596E-3,16.09096,7.580142E-3,15.111313,6.861598E-3,1940.19678,707.875122,7.110077,24.068945,3.385187,4.895,28.08835191,53.9,32.815971,43.549091,47.798,29.078913,35.678177,39.044399,37.054291,43.031124,37.593399
nyu708501,588015510368092211,57.08874926,1.00130553,3325,41,6,489,GALAXY,17.630394,8.373224E-3,16.622892,5.423226E-3,17.674009,0.850048,16.696228,1.09869,1582.04626,825.286194,7.268559,23.744804,3.266783,4.895,28.08835214,53.9,21.558437,27.916571,33.450768,15.707426,21.817118,25.20923,130.65361,138.406036,132.219467
nyu708464,588015510367961246,56.78139275,1.00033965,3325,41,6,487,GALAXY,16.433195,3.679585E-3,15.394933,2.822855E-3,16.53797,0.045534,15.512044,0.041584,1573.24194,753.164124,4.255656,13.751293,3.231298,4.895,28.08835217,53.9,34.048359,39.202904,43.768688,13.404532,17.565027,21.285923,9.100439,10.289928,12.03718
nyu708441,588015510338273382,348.91015664,1.02542341,3325,41,6,34,GALAXY,16.582525,4.186909E-3,15.740767,3.258359E-3,16.666561,7.611225E-3,15.835052,6.578454E-3,1798.69202,307.495544,5.645519,17.664064,3.128865,4.895,28.08837116,107.8,26.412495,33.709717,39.452053,22.054504,27.57513,31.203573,150.311691,157.03891,157.264709
nyu707989,588015509267284136,355.28917845,0.08077065,3325,41,4,76,GALAXY,18.233175,9.779008E-3,17.315966,6.710127E-3,18.289349,0.019372,17.344725,0.014715,842.4729,1136.22803,4.391807,14.036363,3.196034,4.76,28.0914,107.8,12.848104,18.072802,17.734875,12.124217,14.691321,15.780423,35.201832,106.887283,98.37999
nyu707986,588015509267284119,355.28021719,0.09521911,3325,41,4,76,GALAXY,15.733716,3.320334E-3,14.775942,2.555155E-3,15.821871,6.153348E-3,14.837801,4.709736E-3,973.827087,1054.71472,12.672441,39.779095,3.139024,4.76,28.0914,107.8,43.880669,57.307476,61.284039,32.011745,42.102108,45.505276,26.152416,21.242378,25.368906
nyu707975,588015509267284021,355.17316328,0.10339606,3325,41,4,76,GALAXY,16.824186,4.945799E-3,15.921139,3.685378E-3,16.89241,0.01149,16.003992,9.216256E-3,1048.15283,81.463654,6.665433,22.003414,3.301123,4.76,28.0914,107.8,25.525682,30.463884,36.186245,21.604404,28.364126,33.003536,21.740253,15.446509,5.447573
nyu707851,588015508757872826,57.97371008,-0.37742355,3325,41,3,495,GALAXY,16.868347,5.218199E-3,15.83566,3.411469E-3,16.898287,0.011577,15.869234,7.742886E-3,495.938385,704.193726,7.437945,25.349577,3.408143,4.72,28.11361381,53.9,27.33148,34.671474,38.849918,21.271265,29.908718,32.203526,174.175354,168.550812,176.286697
nyu707460,588015508220608714,57.12021752,-0.68438579,3325,41,2,489,GALAXY,17.374846,6.465173E-3,16.331408,4.172663E-3,17.442474,0.010491,16.424034,5.655505E-3,1519.46594,1111.06006,5.412481,14.073365,2.600169,4.6,28.08872993,53.9,18.517929,23.11191,24.59663,14.793936,16.794888,20.892387,178.940567,162.34404,145.803055
nyu707459,588015508220608593,57.11264681,-0.78869678,3325,41,2,489,GALAXY,15.860132,3.216225E-3,14.817227,2.402347E-3,15.885029,6.151403E-3,14.846832,5.438428E-3,571.366943,1042.46375,7.722803,26.3325,3.409708,4.6,28.08872993,53.9,37.18288,46.331005,54.346256,27.305304,36.919994,42.421497,162.258224,157.501282,148.930542
nyu707424,588015508196753493,2.56694949,-0.73056205,3325,41,2,125,GALAXY,16.01054,3.431247E-3,15.095877,2.72745E-3,15.992953,5.386425E-3,15.103944,3.889064E-3,1097.08069,607.280762,9.168046,26.802841,2.923506,4.6,28.08874958,107.8,36.521275,43.455463,45.220741,26.550402,31.094093,34.316891,10.324838,6.879469,11.671026
nyu707408,588015508196622478,2.34462213,-0.69211441,3325,41,2,123,GALAXY,17.57556,6.931498E-3,16.632086,4.993217E-3,17.613194,0.014321,16.690685,9.849904E-3,1446.42957,1308.13745,5.179465,15.797956,3.050113,4.6,28.08874964,107.8,22.330147,25.987715,26.12739,11.656565,14.894295,18.536842,150.696228,149.614853,149.766541
nyu707404,588015508196622442,2.26126003,-0.7941082,3325,41,2,123,GALAXY,16.656122,4.837299E-3,15.688951,3.524584E-3,16.759539,8.198818E-3,15.844981,5.58167E-3,519.381958,550.571411,7.811695,21.128508,2.704728,4.6,28.08874964,107.8,24.541409,28.408083,31.682766,22.123188,27.212797,29.85994,13.842179,12.615746,51.283554
nyu707383,588015508196491397,2.01927374,-0.75125183,3325,41,2,121,GALAXY,17.701982,6.963846E-3,16.842525,5.292146E-3,17.671873,0.010963,16.856058,8.698423E-3,908.901245,1072.72205,4.035342,12.43941,3.082616,4.6,28.08874967,107.8,17.635534,20.933319,23.882505,12.997138,14.486814,16.020586,130.174515,129.376816,135.814758
nyu707382,588015508196491371,1.97905003,-0.80133777,3325,41,2,121,GALAXY,17.542225,6.080037E-3,16.641525,4.469529E-3,17.607571,0.011945,16.715178,0.01052,453.719238,707.166443,3.378199,10.010455,2.963252,4.6,28.08874967,107.8,16.74268,22.628775,27.673502,13.897194,19.898409,26.373983,5.726765,152.119339,53.245384
nyu707358,588015508195508304,359.70064558,-0.6613231,3325,41,2,106,GALAXY,18.654104,0.011682,17.706484,7.968784E-3,18.70039,0.019295,17.779903,0.014807,1726.17517,409.499969,3.236883,9.3805,2.898004,4.6,28.08874994,107.8,15.482258,19.739687,20.297895,6.804755,8.274695,9.94219,31.539564,32.25901,34.408894
nyu707094,588015507684262073,58.30967304,-1.22012719,3325,41,1,497,GALAXY,18.173426,0.010445,17.119261,0.02057,18.321434,0.027103,17.303787,0.025228,466.051208,1034.48633,3.255047,9.797303,3.009881,4.71,28.12542177,53.9,16.847538,20.875484,23.983147,7.115795,13.034587,16.298475,50.759354,41.729912,40.568386
nyu707021,588015507683803362,57.24304116,-1.14480097,3325,41,1,490,GALAXY,15.132644,3.19366E-3,14.136263,2.18316E-3,15.273863,7.087066E-3,14.281327,4.174198E-3,1150.724,865.250366,20.690865,59.183647,2.860376,4.71,28.12542228,53.9,64.26783,86.076416,93.085556,41.91637,54.555096,60.354218,0.350869,177.290604,174.725052
nyu707019,588015507683803302,57.28277813,-1.12855791,3325,41,1,490,GALAXY,17.218044,8.448533E-3,16.287542,4.846342E-3,17.52508,0.018209,16.615976,0.015416,1298.41333,1226.46313,7.158208,18.687519,2.610642,4.71,28.12542228,53.9,25.011282,29.257549,32.967598,13.445765,16.611557,19.859024,12.634521,13.049439,14.122805
nyu707002,588015507683672208,56.93010362,-1.23422451,3325,41,1,488,GALAXY,18.743284,0.013191,17.645353,6.87554E-3,18.800341,0.025653,17.701227,0.011328,337.946411,742.752686,3.393089,9.594391,2.827627,4.71,28.12542241,53.9,10.323023,13.138397,15.202479,8.393453,11.903815,14.527902,27.850016,35.888897,83.169228
nyu707,588015508734607459,4.84007486,-0.41583232,3325,41,3,140,GALAXY,17.615749,6.927622E-3,16.769291,5.0899E-3,17.583298,0.013646,16.76874,9.811377E-3,143.900162,857.32782,5.504588,16.826775,3.056864,4.72,28.11363329,107.8,22.450893,26.513617,27.346375,13.082893,16.057102,18.290112,27.701202,30.906492,25.34613
nyu706993,588015507683606584,56.83354875,-1.08357328,3325,41,1,487,GALAXY,18.132605,0.010682,17.019577,5.528714E-3,18.139324,0.023858,17.063757,0.012181,1707.24756,1226.21118,5.050102,16.145161,3.196997,4.71,28.12542254,53.9,14.770673,21.312038,27.959215,13.336026,18.37072,24.428694,9.11323,168.537079,124.525299
nyu706982,588015507683082378,55.53709048,-1.24674684,3325,41,1,479,GALAXY,15.783762,3.409293E-3,14.819963,2.425069E-3,15.902571,5.425729E-3,14.939343,3.19268E-3,223.673492,328.931732,9.484801,30.212248,3.185333,4.71,28.12542321,53.9,34.730473,48.394207,53.993118,32.965515,44.669048,52.223202,19.945814,10.47165,34.874977
nyu706755,588015507664863294,13.979246,-1.24683384,3325,41,1,201,GALAXY,16.953781,7.266711E-3,16.040926,4.604298E-3,17.143133,0.373212,16.194721,0.327233,220.93457,914.484253,8.537693,26.488991,3.102594,4.71,28.12544017,107.8,30.023561,38.068848,40.566895,15.011285,21.238459,26.292448,93.292061,86.456932,84.665321
nyu706754,588015507664863293,13.98196051,-1.24719426,3325,41,1,201,GALAXY,15.180495,2.688696E-3,14.303596,2.226022E-3,15.362112,0.046774,14.472326,0.045582,217.66037,939.160461,6.890793,21.337053,3.096458,4.71,28.12544017,107.8,52.714413,60.238995,63.544483,19.715105,26.995825,34.601063,90.430054,90.174995,87.514389
nyu7058,588015507671220371,28.54860391,-1.19723152,3325,41,1,298,GALAXY,16.328283,3.888265E-3,15.407052,2.88653E-3,16.401264,6.079026E-3,15.533496,3.956302E-3,675.107727,1337.68982,5.940263,16.452883,2.769723,4.71,28.12543505,53.9,26.662176,29.764627,34.332626,18.084751,20.96859,24.543089,158.97348,152.490707,163.603012
nyu7030,588015507671089324,28.256309,-1.14487888,3325,41,1,296,GALAXY,16.940802,0.011033,16.050627,4.257117E-3,16.833042,0.016335,16.008068,0.010995,1150.75842,1402.48608,12.909107,34.800137,2.695782,4.71,28.12543523,53.9,54.359997,62.149651,56.877441,13.293921,15.806211,17.812311,10.847724,7.925385,5.684392
nyu699,588015508733820990,3.02537849,-0.41522304,3325,41,3,128,GALAXY,14.274771,2.041261E-3,13.47552,1.864714E-3,14.331475,5.063387E-3,13.534855,3.900332E-3,149.792313,692.496887,14.088594,43.214851,3.067364,4.72,28.11363357,107.8,72.8741,82.087349,87.399727,47.862915,55.424728,58.596355,53.800339,57.337837,55.071846
nyu6989,588015507670892613,27.8057702,-1.06072736,3325,41,1,293,GALAXY,15.092069,2.632161E-3,14.236435,2.114657E-3,15.232209,6.398275E-3,14.356459,7.491524E-3,1915.85071,1390.02551,9.265522,28.824482,3.11094,4.71,28.12543536,53.9,40.672142,50.574669,55.187965,36.586716,48.623577,51.648048,176.785843,174.067001,1.213948
nyu6959,588015507670696023,27.22028322,-1.1319648,3325,41,1,290,GALAXY,15.523199,3.241939E-3,14.665576,2.457895E-3,15.634315,5.949074E-3,14.805653,4.490417E-3,1268.41785,150.587204,12.329566,32.899048,2.668305,4.71,28.12543543,107.8,46.945557,52.607098,56.698608,27.509096,33.190208,37.619396,9.690878,8.925676,11.887123
nyu6922,588015507670171829,26.12959148,-1.16778094,3325,41,1,282,GALAXY,17.397799,6.374125E-3,16.525423,4.311308E-3,17.464636,0.01063,16.601978,6.564543E-3,942.133728,1124.22302,4.637373,14.103733,3.041319,4.71,28.12543602,53.9,18.118715,21.623232,27.452297,14.472029,19.950577,22.595753,102.060417,103.014328,90.47435
nyu6825,588015507669057720,23.55443375,-1.10363039,3325,41,1,265,GALAXY,18.231548,8.588705E-3,17.303215,5.607252E-3,18.238403,0.017795,17.354284,0.012678,1524.75488,851.403198,2.779015,7.867482,2.831033,4.71,28.12543702,107.8,13.531852,15.322735,16.279541,6.933628,8.211859,9.362001,135.807037,140.559525,140.544128
nyu6824,588015507669057700,23.55327737,-1.12484338,3325,41,1,265,GALAXY,16.110304,3.97362E-3,15.151549,2.753001E-3,16.142622,0.024392,15.203357,0.022792,1331.87781,840.883301,9.482805,33.676865,3.551361,4.71,28.12543702,107.8,39.741714,55.381813,68.507553,30.866501,39.419147,43.404366,76.980118,59.74345,63.994572
nyu6823,588015507669057691,23.5382389,-1.12595851,3325,41,1,265,GALAXY,18.152748,8.950436E-3,17.216551,5.647704E-3,18.194267,0.017009,17.295523,0.012237,1321.73303,704.178223,3.331475,9.525522,2.85925,4.71,28.12543702,107.8,13.559739,16.280375,18.532822,9.332388,10.588793,10.790349,144.069183,133.446854,143.07106
nyu6820,588015507669057687,23.53789048,-1.15560264,3325,41,1,265,GALAXY,18.3458,9.694811E-3,17.48102,6.293257E-3,18.382017,0.016449,17.537437,9.564981E-3,1052.2019,701.010925,3.078801,8.867761,2.880264,4.71,28.12543702,107.8,11.600544,14.632049,16.443735,9.390002,10.692487,10.767798,147.483276,149.221725,172.055222
nyu6816,588015507669057650,23.51026536,-1.07576698,3325,41,1,265,GALAXY,14.553829,2.549279E-3,13.743175,2.089862E-3,14.636023,8.35282E-3,13.8776,4.535319E-3,1778.06836,449.917999,19.753157,56.758739,2.873401,4.71,28.12543702,107.8,107.355263,103.598732,102.535027,32.696251,38.698414,42.627357,139.664063,141.189865,137.681305
nyu6812,588015507668992173,23.43259992,-1.177848,3325,41,1,264,GALAXY,17.355665,7.216157E-3,16.38751,4.833102E-3,17.44681,0.012746,16.486742,6.613631E-3,849.968811,1104.87,5.439737,16.371578,3.009627,4.71,28.12543708,107.8,18.336412,22.431036,26.330832,16.809204,19.979584,21.259998,19.032309,4.042404,22.453768
nyu6771,588015507668598795,22.43328299,-1.24142432,3325,41,1,258,GALAXY,14.13022,2.063471E-3,13.332492,1.790695E-3,14.248814,0.014701,13.429003,0.017417,271.502869,186.93425,16.22295,52.17429,3.216079,4.71,28.12543746,107.8,87.542877,108.447777,115.596603,50.452679,59.987495,64.479843,58.797852,58.809853,58.453533
nyu6760,588015507668336710,21.9292035,-1.13958979,3325,41,1,254,GALAXY,14.678533,2.408671E-3,13.911219,2.005291E-3,14.755687,4.238706E-3,13.9779,4.048969E-3,1197.2229,1048.49451,15.297061,45.262821,2.958923,4.71,28.12543761,107.8,61.026802,76.192543,78.344368,44.95895,54.765057,61.477436,25.648413,31.287289,26.880884
nyu6759,588015507668336696,21.89959469,-1.10511906,3325,41,1,254,GALAXY,14.538072,2.368799E-3,13.775327,2.094417E-3,14.512479,0.05759,13.730596,0.059779,1510.64429,779.342834,12.977959,40.248665,3.10131,4.71,28.12543761,107.8,94.229874,108.192917,108.126747,21.705967,26.304203,32.520199,37.69038,36.971813,38.762497
nyu6739,588015507668205641,21.64589164,-1.11299548,3325,41,1,252,GALAXY,15.310268,2.927313E-3,14.541649,2.311032E-3,15.318435,5.145969E-3,14.534868,3.942405E-3,1439.02551,1194.99329,14.274611,42.369858,2.968197,4.71,28.12543765,107.8,53.086281,61.902832,66.104752,36.147751,44.964478,49.339298,45.694855,44.669125,47.039772
nyu6734,588015507668140113,21.51047145,-1.22561472,3325,41,1,251,GALAXY,14.55265,2.36244E-3,13.76063,1.9479E-3,14.667719,3.429473E-3,13.824953,2.801644E-3,415.130798,1325.02954,18.627558,57.039791,3.062119,4.71,28.12543771,107.8,66.048241,88.972504,92.609116,51.581146,64.402206,72.035835,157.631668,164.977554,161.066315
nyu6699,588015507667812465,20.6855226,-1.19382632,3325,41,1,246,GALAXY,17.487116,7.191249E-3,16.514595,4.491639E-3,17.409864,0.047436,16.510098,0.035084,703.675903,630.99939,6.603497,17.579865,2.662205,4.71,28.125438,107.8,30.358574,34.34589,36.475319,9.84892,11.43902,11.709562,67.272827,66.723061,63.129856
nyu6667,588015507667419303,19.8062316,-1.14443928,3325,41,1,240,GALAXY,15.510767,3.223988E-3,14.552951,2.353998E-3,15.587002,5.798737E-3,14.659911,4.058856E-3,1152.48633,804.037598,12.527884,39.108021,3.121678,4.71,28.12543824,107.8,50.975948,62.277767,64.034927,32.03492,40.126816,43.64465,79.650322,79.666817,81.970665
nyu6666,588015507667419298,19.80433999,-1.17755077,3325,41,1,240,GALAXY,16.746481,4.734891E-3,15.868572,3.38287E-3,16.725544,0.013651,15.85226,8.57741E-3,851.4599,786.855164,6.174716,20.083527,3.252543,4.71,28.12543824,107.8,25.303999,30.748564,33.075459,19.802353,22.968946,25.370464,0.618651,10.155695,2.32537
nyu6656,588015507667419157,19.76306447,-1.23369508,3325,41,1,240,GALAXY,16.127527,3.607177E-3,15.247289,2.735784E-3,16.20664,0.019289,15.341166,0.018244,341.205322,411.726349,5.582112,18.828833,3.373066,4.71,28.12543824,107.8,32.733883,39.187408,45.26825,26.496923,35.059772,38.539009,154.27948,157.70726,162.849808
nyu6642,588015507667353737,19.61575677,-1.05753529,3325,41,1,239,GALAXY,17.389446,7.078526E-3,16.497461,4.43471E-3,17.467302,0.0129,16.597166,0.01121,1942.5354,433.633209,4.191267,12.320739,2.939622,4.71,28.1254383,107.8,18.976114,21.8186,25.794899,11.968574,15.366722,15.904683,152.804642,146.185699,147.809204
nyu6640,588015507667288214,19.55409523,-1.07301778,3325,41,1,238,GALAXY,16.552406,4.857102E-3,15.704285,3.366337E-3,16.493244,0.014302,15.668779,0.013673,1801.77808,1234.04468,9.802609,25.957727,2.648043,4.71,28.12543834,107.8,43.480232,53.224907,57.557682,14.605069,16.849497,17.531364,65.551208,64.639297,67.432602
nyu6632,588015507667222565,19.35251325,-1.06557557,3325,41,1,237,GALAXY,16.504883,5.112761E-3,15.45955,3.269595E-3,16.54108,0.05085,15.629065,0.042258,1869.3396,762.526794,9.501435,29.8013,3.136505,4.71,28.12543839,107.8,56.519138,68.864426,67.865471,15.048223,18.708849,22.647671,0.245243,1.311506,178.995956
nyu6623,588015507667157080,19.16886671,-1.19451971,3325,41,1,236,GALAXY,16.659496,5.72504E-3,15.827831,3.774688E-3,16.771433,0.010206,15.951692,7.662374E-3,697.144043,454.11142,8.268023,22.896788,2.769318,4.71,28.12543843,107.8,27.321394,31.041847,33.959728,18.592642,25.667637,28.445827,128.821564,109.331512,110.133049
nyu6566,588015507666632779,18.06863883,-1.14995139,3325,41,1,228,GALAXY,17.768932,7.913465E-3,16.810097,4.940236E-3,17.855421,0.017344,16.921062,0.012111,1102.12573,1341.15991,4.183424,11.835692,2.829188,4.71,28.1254389,107.8,16.818163,20.458134,21.198606,10.783188,13.980148,17.197254,21.797413,15.501749,20.553286
nyu6556,588015507666501733,17.75683287,-1.24110247,3325,41,1,226,GALAXY,16.898893,5.755828E-3,15.929345,3.670032E-3,16.924034,0.014141,15.978159,0.010239,273.608185,1229.05579,7.893037,25.732822,3.260193,4.71,28.12543929,107.8,26.445118,39.525291,49.263729,19.845085,26.966158,32.305664,32.455132,34.556309,25.526941
nyu6538,588015507666370634,17.42798466,-1.20279207,3325,41,1,224,GALAXY,16.88521,5.375837E-3,15.954872,3.800956E-3,17.009247,0.016582,16.089449,0.014796,621.809509,962.096863,4.398819,12.969995,2.948517,4.71,28.1254394,107.8,24.577204,29.798418,-9999,12.779447,16.220423,-9999,2.411296,178.908264,-9999
nyu6477,588015507665977451,16.55958172,-1.22135898,3325,41,1,218,GALAXY,17.045103,5.427829E-3,16.155434,3.789663E-3,17.117332,0.015629,16.244036,0.014067,452.633484,1234.22498,4.74314,14.407891,3.037627,4.71,28.1254397,107.8,24.802767,29.863977,33.100872,11.368543,13.924986,16.862379,9.121192,4.641367,1.385363
nyu6476,588015507665977440,16.5331181,-1.14699114,3325,41,1,218,GALAXY,17.326944,6.53724E-3,16.418472,4.36994E-3,17.396622,0.010747,16.502283,6.639045E-3,1128.6427,993.600891,4.909784,14.818351,3.018127,4.71,28.1254397,107.8,20.199354,23.778343,25.175379,14.175556,17.753969,19.055265,117.319992,120.891762,144.1035
nyu6470,588015507665977412,16.45378164,-1.14932353,3325,41,1,218,GALAXY,16.588062,5.019728E-3,15.655049,3.35286E-3,16.638741,0.010309,15.713125,5.619643E-3,1107.47034,272.373962,9.009648,27.245781,3.024067,4.71,28.1254397,107.8,27.736578,35.234901,40.702087,24.175068,31.659847,36.285198,156.335907,8.880061,171.020432
nyu6451,588015507665780778,16.07000054,-1.07499649,3325,41,1,215,GALAXY,14.202073,2.04546E-3,13.361797,1.810734E-3,14.343784,0.022773,13.521035,0.021671,1782.90295,866.570801,9.079256,30.653666,3.376231,4.71,28.12543984,107.8,91.85791,98.733849,100.406593,38.385708,44.952766,49.419445,103.391029,104.344093,103.183823
nyu6439,588015507665715341,15.93714017,-1.17678735,3325,41,1,214,GALAXY,16.582748,4.733073E-3,15.664896,3.259139E-3,16.636084,0.010499,15.733325,7.946016E-3,857.346069,1019.8847,7.332632,24.158714,3.294685,4.71,28.12543992,107.8,31.038616,39.836872,45.704475,19.448683,26.599588,29.540766,48.042526,51.632603,49.472481
nyu6413,588015507665584261,15.65687672,-1.06896777,3325,41,1,212,GALAXY,16.351002,5.391773E-3,15.451252,4.263109E-3,16.480457,0.014251,15.639618,0.010785,1837.55896,1194.14417,9.122535,26.048969,2.855453,4.71,28.12543995,107.8,42.595062,50.095303,54.114941,16.184891,18.099627,18.859743,151.855438,150.079041,148.514786
nyu6394,588015507665453235,15.32628908,-1.16842072,3325,41,1,210,GALAXY,16.784079,4.932582E-3,15.849244,3.375044E-3,16.878099,0.01181,15.934587,0.011076,933.481201,910.761353,5.560659,18.334473,3.297176,4.71,28.12543999,107.8,24.820393,35.837849,40.686131,18.77673,26.785666,31.171526,140.314941,132.30365,128.313232
nyu6387,588015507665453197,15.29461613,-1.16645221,3325,41,1,210,GALAXY,16.288454,4.909338E-3,15.414351,3.310434E-3,16.527046,9.718454E-3,15.627769,5.74497E-3,951.363525,622.839355,10.243675,28.453096,2.777626,4.71,28.12543999,107.8,28.642218,36.29974,40.300335,24.692356,33.229057,35.610317,76.411987,67.805191,58.58823
nyu6355,588015507665191009,14.69787722,-1.09712517,3325,41,1,206,GALAXY,16.802414,5.222953E-3,16.012306,3.743341E-3,16.864721,0.011998,16.060658,7.54677E-3,1581.80847,642.426758,6.122352,18.642992,3.04507,4.71,28.12544005,107.8,28.178671,30.752409,33.212929,13.755745,15.998045,19.115271,60.872948,59.693695,61.420536
nyu6351,588015507665125494,14.57491976,-1.14886571,3325,41,1,205,GALAXY,16.555346,4.432087E-3,15.63816,3.102299E-3,16.507954,8.698022E-3,15.593445,5.982888E-3,1111.39026,885.592529,6.787865,24.233086,3.57006,4.71,28.12544006,107.8,27.76346,35.706421,41.142998,26.308399,32.149536,36.198597,174.418839,22.267809,32.077984
nyu6316,588015507664994403,14.21963816,-1.15918816,3325,41,1,203,GALAXY,16.346052,4.194473E-3,15.493387,3.009966E-3,16.471554,7.477374E-3,15.605267,5.496085E-3,1017.53668,377.666534,6.610047,20.821302,3.149948,4.71,28.12544008,107.8,27.409378,34.990452,38.559231,22.485329,29.394287,32.373302,170.037933,154.620895,153.707565
nyu6313,588015507664929017,14.16010757,-1.12600666,3325,41,1,202,GALAXY,16.963984,5.778709E-3,16.092247,3.928374E-3,17.130871,0.02357,16.262796,0.028633,1319.21936,1197.46326,6.143506,18.220903,2.96588,4.71,28.12544011,107.8,26.746826,28.951939,33.737728,11.64639,15.551673,17.055616,60.994099,58.506031,61.437714
nyu6306,588015507664928991,14.12167432,-1.22549779,3325,41,1,202,GALAXY,17.363338,7.382605E-3,16.461096,4.724633E-3,17.540651,0.128469,16.622225,0.121581,414.843109,848.136597,5.63349,15.046453,2.670893,4.71,28.12544011,107.8,17.517952,20.851561,24.38641,14.522449,18.604107,20.425951,10.660848,16.685444,72.157898
nyu6304,588015507664928876,14.12798103,-1.17288499,3325,41,1,202,GALAXY,16.087374,3.674518E-3,15.224002,2.752213E-3,16.199492,0.013146,15.358699,0.012172,893.039307,905.422119,6.588678,20.577227,3.123119,4.71,28.12544011,107.8,34.349655,40.740437,45.501915,22.564236,28.848637,34.367538,6.227225,11.245116,11.558483
nyu6295,588015507664928970,14.08750423,-1.17663074,3325,41,1,202,GALAXY,15.626968,3.263939E-3,14.713454,2.465741E-3,15.763836,0.012831,14.883539,0.011541,858.999023,537.46759,9.296295,26.622252,2.863749,4.71,28.12544011,107.8,45.008747,52.29718,58.093239,22.584623,27.683006,32.343281,28.660275,27.729408,29.45929
nyu6293,588015507664928961,14.07673823,-1.13452843,3325,41,1,202,GALAXY,16.918789,5.528587E-3,16.063894,3.74083E-3,17.004129,0.01568,16.173433,0.013482,1241.76563,439.588348,5.052166,14.949642,2.959056,4.71,28.12544011,107.8,26.280176,27.594582,31.298687,12.127942,15.620738,15.944561,176.887253,175.059586,174.861191
nyu6291,588015507664928792,14.07561804,-1.24184266,3325,41,1,202,GALAXY,15.985582,3.421767E-3,15.050509,2.57508E-3,16.072702,4.374679E-3,15.154978,2.610653E-3,266.342865,429.48233,5.962122,17.909771,3.003926,4.71,28.12544011,107.8,23.851765,30.461075,33.612427,23.357443,27.638288,29.572725,122.957329,179.525894,161.505188
nyu6290,588015507664928951,14.05970964,-1.14435747,3325,41,1,202,GALAXY,16.88258,5.876093E-3,16.03167,4.003843E-3,17.053373,0.015743,16.219286,0.015983,1152.4082,284.789001,6.213464,17.719351,2.851767,4.71,28.12544011,107.8,28.651018,35.087898,40.45657,11.872864,14.200688,15.153604,155.494141,161.008057,162.179382
nyu6287,588015507664928923,14.04447166,-1.11692169,3325,41,1,202,GALAXY,15.395521,3.093224E-3,14.475733,2.309015E-3,15.520268,5.769245E-3,14.604456,5.276996E-3,1401.85059,146.270996,12.014443,37.087292,3.086892,4.71,28.12544011,107.8,44.808891,54.303062,60.806862,34.892509,46.706528,50.434441,55.420635,45.345306,23.201094
nyu6283,588015507664863412,14.02504496,-1.05711454,3325,41,1,201,GALAXY,17.144047,5.943174E-3,16.30908,4.114781E-3,17.322887,0.014668,16.475975,0.016585,1945.52771,1330.76135,4.82788,13.683893,2.834348,4.71,28.12544017,107.8,22.672251,29.181419,28.712971,10.445563,12.497616,12.640885,120.258759,119.817703,119.737503
nyu6275,588015507664863287,13.97950758,-1.06412313,3325,41,1,201,GALAXY,16.566525,5.539717E-3,15.53146,3.436081E-3,16.402077,1.243079,15.476056,0.580545,1881.7854,916.814148,11.862837,29.839476,2.515374,4.71,28.12544017,107.8,35.962193,41.194992,43.862797,28.203083,33.624432,39.217712,113.392662,113.901466,97.361679
nyu6270,588015507664863383,13.96305092,-1.16471654,3325,41,1,201,GALAXY,16.328289,4.96075E-3,15.427065,3.290528E-3,16.516886,8.304131E-3,15.621403,6.736525E-3,967.235779,767.188049,7.417316,20.341108,2.742381,4.71,28.12544017,107.8,31.748846,37.125454,41.170303,16.841906,21.359772,22.624699,156.530441,152.816925,151.255096
nyu6269,588015507664863371,13.95662403,-1.08167069,3325,41,1,201,GALAXY,17.232004,5.528814E-3,16.372459,3.913666E-3,17.319742,9.352141E-3,16.464434,7.178656E-3,1722.24866,708.784058,3.833348,10.276206,2.68074,4.71,28.12544017,107.8,17.961609,23.513229,22.994253,10.58058,13.235738,14.026679,163.833771,158.493454,156.874771
nyu6260,588015507664797880,13.88458338,-1.21108884,3325,41,1,200,GALAXY,17.354265,7.285529E-3,16.520063,5.217058E-3,17.24905,0.014497,16.413517,8.736677E-3,545.696594,1415.01599,8.006958,20.360306,2.542827,4.71,28.12544022,107.8,22.714899,28.304783,32.620464,15.91254,18.48093,20.902422,104.154419,109.802887,103.794647
nyu6258,588015507664797874,13.87298376,-1.13278904,3325,41,1,200,GALAXY,16.070463,3.667785E-3,15.216681,3.05145E-3,16.226822,0.086898,15.37113,0.086579,1257.45898,1309.53308,5.139477,15.830325,3.080143,4.71,28.12544022,107.8,39.145912,46.789074,49.097862,13.665168,16.19141,18.963562,95.622765,93.399696,92.04615
nyu6249,588015507664797850,13.80673671,-1.07603441,3325,41,1,200,GALAXY,15.743011,4.137632E-3,14.857548,2.897462E-3,15.967665,8.072988E-3,15.119129,4.545673E-3,1773.31812,707.371765,13.418818,37.545624,2.797983,4.71,28.12544022,107.8,63.249069,70.291962,70.317558,18.460037,21.617292,24.818289,10.015295,10.042982,11.730158
nyu6236,588015507664666744,13.5663642,-1.23933582,3325,41,1,198,GALAXY,15.920851,3.85757E-3,15.022726,2.734932E-3,15.961088,0.01022,15.022678,4.451821E-3,288.861572,1244.51025,13.14177,43.450451,3.306286,4.71,28.12544028,107.8,39.826309,52.473003,55.600414,37.837601,49.551331,54.904972,75.073883,8.370083,62.132828
nyu6196,588015507664404627,12.95314958,-1.13338816,3325,41,1,194,GALAXY,18.000938,0.01477,17.076435,8.305788E-3,17.919901,0.03946,17.059736,0.054422,1252.06494,1114.03906,10.847068,29.429998,2.713176,4.71,28.12544034,107.8,38.304939,42.543583,42.581978,8.856261,12.044419,13.36175,0.568311,2.284269,177.802429
nyu6127,588015507663880332,11.76626239,-1.08543468,3325,41,1,186,GALAXY,16.893082,5.743032E-3,16.046865,3.710084E-3,16.950916,7.659585E-3,16.13876,4.887008E-3,1687.61829,1212.50977,4.934597,14.50323,2.939091,4.71,28.1254406,107.8,18.888056,25.953819,25.296888,17.601656,21.629551,24.658169,139.008102,149.356369,137.686142
nyu6113,588015507663814813,11.53817415,-1.16039141,3325,41,1,185,GALAXY,18.771816,0.02268,17.389,8.601895E-3,18.989801,0.064973,17.484722,0.02292,1005.90613,500.470032,7.060006,21.946262,3.108533,4.71,28.12544069,107.8,11.956602,23.267105,29.421972,8.837302,14.072463,16.499937,36.417484,31.931808,19.228407
nyu5974,588015507662504037,8.64167578,-1.21598675,3325,41,1,165,GALAXY,17.134581,6.11719E-3,16.192533,3.931067E-3,17.237015,0.012325,16.274523,6.726573E-3,500.888733,1389.74182,5.93453,17.488083,2.946836,4.71,28.12544108,107.8,21.484251,27.249157,31.257193,15.636187,18.902128,21.854086,30.841393,36.530087,38.799633
nyu5948,588015507662241941,7.95744768,-1.23087992,3325,41,1,161,GALAXY,17.087341,6.781256E-3,16.171095,4.841094E-3,17.217997,0.026602,16.354864,0.022614,365.320557,614.14679,6.485751,18.072178,2.786443,4.71,28.12544128,107.8,27.631569,33.557949,35.547775,10.828672,12.875417,14.302739,152.363464,148.619049,148.358185
nyu5927,588015507662045325,7.45561587,-1.2349354,3325,41,1,158,GALAXY,15.778045,3.42598E-3,14.893352,2.553671E-3,15.784685,0.01028,14.945506,8.495074E-3,328.361908,134.893204,10.355651,36.179382,3.493685,4.71,28.12544142,107.8,50.591412,66.76442,77.488747,31.162128,39.251186,44.152451,73.08934,74.513268,71.811516
nyu5907,588015507661848665,7.05953013,-1.07831946,3325,41,1,155,GALAXY,16.334368,5.488375E-3,15.437681,3.549174E-3,16.493149,0.012551,15.629032,0.021303,1751.97961,617.115784,12.973722,37.984604,2.927811,4.71,28.12544148,107.8,37.651348,50.724823,53.102928,24.840322,29.660749,33.200382,75.096748,71.254745,68.251511
nyu5836,588015507661324375,5.814032,-1.17812157,3325,41,1,147,GALAXY,17.793318,7.39008E-3,16.881607,4.795727E-3,17.913445,0.034425,16.999676,0.026715,844.493164,182.62114,3.129664,8.843362,2.825658,4.71,28.12544177,107.8,16.716906,20.371389,22.537138,9.399954,10.539534,11.221311,129.73288,115.195297,117.329712
nyu5802,588015507661062297,5.34446324,-1.20937872,3325,41,1,143,GALAXY,16.067297,3.696523E-3,15.161483,2.72383E-3,16.14669,6.557054E-3,15.256424,5.40746E-3,560.597046,1357.8949,7.527646,22.437698,2.980706,4.71,28.12544182,107.8,28.764029,35.477638,42.721355,26.252615,33.308552,36.872055,113.763023,107.093407,81.979813
nyu5780,588015507660996799,5.19327103,-1.07077929,3325,41,1,142,GALAXY,17.233801,6.922794E-3,16.323654,4.463558E-3,17.41807,0.020138,16.542002,0.020267,1820.59326,1344.15442,5.881292,16.728508,2.844359,4.71,28.12544185,107.8,28.60302,34.162094,38.180496,8.928089,10.711521,12.056365,166.62146,161.109177,164.745728
nyu5776,588015507660996745,5.1113121,-1.05872918,3325,41,1,142,GALAXY,18.143227,0.011047,17.266804,6.796803E-3,18.239805,0.209817,17.379084,0.193226,1930.1792,599.11615,4.129553,12.681832,3.070994,4.71,28.12544185,107.8,17.356058,22.76004,23.395065,13.355392,17.720572,20.099438,142.961075,106.777397,143.385696
nyu5775,588015507660996744,5.11097513,-1.06093845,3325,41,1,142,GALAXY,16.099379,3.985955E-3,15.181734,2.81391E-3,16.157108,0.016237,15.248909,0.015498,1910.09766,596.050537,8.899095,30.048235,3.376549,4.71,28.12544185,107.8,39.66069,49.788036,54.788074,26.192629,31.469402,35.960339,104.163193,93.8153,93.444885
nyu5774,588015507660996743,5.11467619,-1.0692684,3325,41,1,142,GALAXY,15.8522,3.546548E-3,14.940763,2.592627E-3,16.025383,0.010877,15.118083,0.01019,1834.37549,629.686951,7.78517,24.012053,3.084332,4.71,28.12544185,107.8,43.130245,57.777233,55.190212,26.200357,33.282963,38.34766,23.997303,9.311951,17.012714
nyu5751,588015507660800161,4.68399324,-1.11860315,3325,41,1,139,GALAXY,17.498627,7.657653E-3,16.614328,4.886051E-3,17.521708,0.014972,16.682032,9.530758E-3,1386.18225,797.231506,5.861787,18.295191,3.121094,4.71,28.1254418,107.8,21.009554,24.495497,25.106539,15.615898,19.996113,21.878508,9.250089,179.272766,7.502714
nyu5646,588015507660013699,2.88061378,-1.23995945,3325,41,1,127,GALAXY,16.136583,4.257227E-3,15.210886,2.951271E-3,16.20055,0.010202,15.307141,7.853838E-3,283.078461,735.589417,10.783762,34.561653,3.204972,4.71,28.12544217,107.8,39.869293,51.833229,59.879013,27.466059,34.632145,38.545521,64.151443,65.799583,68.470184
nyu5642,588015507660013670,2.83020424,-1.21624927,3325,41,1,127,GALAXY,16.711655,5.514736E-3,15.750988,3.647495E-3,16.880959,0.027448,15.955903,0.023062,498.512268,277.307831,7.95178,23.299917,2.930151,4.71,28.12544217,107.8,40.383499,49.235477,55.581203,12.086202,15.012467,16.522753,74.856102,76.100288,75.171356
nyu5636,588015507659948148,2.74311421,-1.20632658,3325,41,1,126,GALAXY,17.403091,6.352017E-3,16.610298,4.624297E-3,17.485348,0.020642,16.705805,0.016652,588.682922,846.499695,3.642613,10.569044,2.901501,4.71,28.12544217,107.8,21.529005,25.53684,24.917952,9.008031,10.087618,11.964743,112.863937,111.394836,106.162857
nyu5619,588015507659817035,2.38907514,-1.08578774,3325,41,1,124,GALAXY,16.559933,4.998534E-3,15.676276,3.591608E-3,16.674974,9.205012E-3,15.786713,5.140396E-3,1684.34143,349.951447,7.387952,21.404099,2.897163,4.71,28.12544222,107.8,26.004629,31.254673,32.179935,19.668015,23.97542,25.332226,112.376648,122.899544,121.727623
nyu56,588015508195901549,0.58323947,-0.83011541,3325,41,2,112,GALAXY,18.437122,9.503328E-3,17.526211,6.569339E-3,18.485033,0.017369,17.585117,0.011805,192.093613,267.059509,2.96093,8.05285,2.719702,4.6,28.08874986,107.8,14.223727,18.322004,20.881638,6.991953,8.419474,11.410812,101.597481,100.920326,109.693573
nyu5462,588015507658702971,359.92270463,-1.16737155,3325,41,1,107,GALAXY,17.453939,6.951198E-3,16.522329,4.481686E-3,17.497921,0.017013,16.585024,0.011877,942.702698,1065.80066,5.028821,15.891565,3.160098,4.71,28.12544232,107.8,21.132862,27.943275,33.369686,14.311672,18.079969,20.475729,61.684017,53.197399,53.356365
nyu5446,588015507658571945,359.6428718,-1.1289859,3325,41,1,105,GALAXY,16.81258,5.283193E-3,15.880944,3.545156E-3,16.872505,0.010386,15.978363,6.522517E-3,1291.79639,1243.92432,6.397325,19.863297,3.104938,4.71,28.12544229,107.8,25.894276,30.826696,36.541187,18.88336,24.64991,28.23756,41.336411,39.714264,51.898613
nyu5445,588015507658571954,359.63762684,-1.1448905,3325,41,1,105,GALAXY,16.94989,5.903687E-3,16.043743,3.935386E-3,17.023251,0.010474,16.153502,6.034439E-3,1147.2041,1196.24182,6.350279,18.729774,2.949441,4.71,28.12544229,107.8,21.468136,25.921942,29.948112,20.042925,24.63884,28.514723,162.253433,167.150955,123.111557
nyu5422,588015507658506244,359.36443817,-1.1314674,3325,41,1,104,GALAXY,15.921372,3.352968E-3,15.103713,2.660729E-3,16.012238,0.018581,15.197165,0.01892,1269.34656,73.598183,5.403382,17.248516,3.19217,4.71,28.12544227,107.8,33.930946,44.579124,52.586411,25.968372,34.894436,37.445744,85.635857,94.381279,84.404366
nyu528355,587731514233520164,57.88048862,1.18981301,2738,40,6,305,GALAXY,15.139111,2.621857E-3,14.062985,2.059519E-3,15.248834,4.786132E-3,14.158843,3.729656E-3,1348.8999,342.859467,17.966402,56.795624,3.161213,4.895,28.24331121,161.7,57.304085,77.981522,87.576546,46.911583,62.422878,74.791611,13.210903,6.059555,2.408215
nyu528354,587731514233520195,57.92328687,1.17334531,2738,40,6,305,GALAXY,17.507826,7.214047E-3,16.504961,4.929041E-3,17.544729,0.017441,16.530533,0.011427,1199.19263,731.990723,8.76801,27.091465,3.089808,4.895,28.24331121,161.7,20.923773,28.79262,32.477791,18.086573,26.143284,30.73271,92.072449,71.813461,96.657814
nyu528280,587731514233061640,56.92495941,1.14564269,2738,40,6,298,GALAXY,17.910984,0.013785,16.749323,8.009415E-3,18.347866,0.048417,17.224518,0.059634,947.231689,1183.23035,9.937482,28.685738,2.88662,4.895,28.24331127,161.7,32.32225,41.805206,55.356129,8.102163,9.855162,10.802573,28.417282,29.466187,32.583305
nyu5264,588015507656933403,355.81101532,-1.18232418,3325,41,1,80,GALAXY,17.279238,5.54111E-3,16.426163,4.042225E-3,17.302614,0.173915,16.482254,0.151603,807.36261,434.467438,3.105139,8.874841,2.858114,4.71,28.12544239,107.8,21.729923,23.602695,29.322214,11.001783,12.902837,12.944592,40.190712,39.254719,40.813438
nyu523120,587731513696190637,56.9405786,0.68672458,2738,40,5,298,GALAXY,15.566379,2.998374E-3,14.528837,2.306627E-3,15.674842,6.397166E-3,14.65357,5.067496E-3,592.519348,1325.17261,12.826692,39.814667,3.104048,4.725,28.29757843,161.7,46.834045,60.134411,66.112457,35.124565,44.680416,50.070618,10.102551,9.629846,9.92526
nyu523089,587731513964494963,56.62398575,0.71880346,2738,40,5,296,GALAXY,15.983117,3.189791E-3,14.908179,2.481826E-3,16.113808,0.062354,15.045672,0.058551,884.138672,1169.12695,6.503883,21.365927,3.285103,4.725,28.29757843,161.7,51.365978,57.621147,65.918129,14.457012,19.200163,22.389364,82.875252,82.110107,80.925972
nyu523032,587731513695797452,56.00109324,0.67824216,2738,40,5,292,GALAXY,17.35512,5.185597E-3,16.42499,3.879005E-3,17.458221,0.013192,16.539749,0.011537,515.555847,950.837769,3.684777,10.142118,2.752438,4.725,28.29757847,161.7,22.6024,27.600044,32.634163,11.473062,13.892235,17.55098,131.201782,135.980652,142.327271
nyu522958,587731513695338723,54.95506971,0.66223502,2738,40,5,285,GALAXY,18.109251,8.076381E-3,17.234114,5.741127E-3,18.168087,0.028097,17.30547,0.020776,370.367798,968.628418,3.844326,11.565951,3.008577,4.725,28.29757851,161.7,17.756437,22.990139,25.767853,10.791611,12.409146,13.981784,54.945324,54.766224,52.171928
nyu522861,587731513694814353,53.78199812,0.80397498,2738,40,5,277,GALAXY,17.129404,6.373425E-3,16.043093,4.109044E-3,17.049372,0.014659,16.054134,9.466113E-3,1658.49658,1191.823,11.546919,35.10778,3.040446,4.725,28.29757864,161.7,25.915047,34.634418,40.260078,25.012306,32.91386,38.349861,39.368473,166.182938,172.858734
nyu522834,587731513694683163,53.38141211,0.69929925,2738,40,5,275,GALAXY,15.884614,3.350276E-3,14.830261,2.55579E-3,15.882339,0.057808,14.913261,0.139622,707.140991,272.659576,11.713573,41.083874,3.507374,4.725,28.29757862,161.7,71.240334,67.041084,74.002274,19.393398,26.671703,31.483088,106.126923,102.189659,101.817047
nyu522797,587731513694486537,52.93527615,0.74782924,2738,40,5,272,GALAXY,15.538768,2.705075E-3,14.585639,2.312999E-3,15.637285,0.037851,14.694463,0.03637,1148.28833,299.250305,6.084169,19.951078,3.279179,4.725,28.29757868,161.7,44.593719,52.406448,54.749996,17.288383,20.889814,25.946451,134.502579,134.227142,136.501724
nyu522470,587731513693110438,49.84569592,0.82344738,2738,40,5,251,GALAXY,15.958745,4.073932E-3,15.028023,3.109037E-3,16.215727,0.016928,15.316466,9.597349E-3,1836.09204,793.049072,12.891571,35.558907,2.758307,4.725,28.29757863,161.7,59.834103,65.419533,67.802246,16.302341,20.556629,23.232447,101.819344,100.929047,99.663361
nyu522222,587731513691996279,47.3174098,0.83280865,2738,40,5,234,GALAXY,17.022976,5.290288E-3,16.078238,3.812319E-3,16.999378,0.010871,16.084871,8.074597E-3,1920.65625,944.87677,8.414551,25.122875,2.985646,4.725,28.29757862,161.7,33.748955,37.731621,42.28326,18.435553,21.202356,22.672935,61.331795,60.164925,60.974842
nyu522143,587731513691668498,46.47204662,0.69790672,2738,40,5,229,GALAXY,17.004763,5.434818E-3,16.009518,3.789615E-3,16.980564,0.011513,15.998022,8.897759E-3,694.431396,64.419243,9.37173,30.830881,3.289775,4.725,28.2975787,161.7,28.378843,41.781769,42.288582,22.515707,28.354279,32.322491,156.668457,157.661545,163.446365
nyu522109,587731513691537536,46.21550721,0.74301901,2738,40,5,227,GALAXY,17.561869,6.145107E-3,16.598206,4.281501E-3,17.585629,0.011564,16.585691,8.64353E-3,1104.94348,454.176544,4.812849,15.135888,3.144892,4.725,28.29757864,161.7,20.128651,23.675873,24.761501,12.946485,17.08012,18.738882,102.466911,99.773354,108.567398
nyu521998,587731513691078795,45.2732853,0.75599108,2738,40,5,220,GALAXY,16.305445,3.768322E-3,15.378001,2.875536E-3,16.25765,8.504755E-3,15.325095,3.830623E-3,1222.61475,1415.30469,9.768128,35.139099,3.597321,4.725,28.29757874,161.7,-9999,50.237438,-9999,-9999,44.989674,-9999,-9999,134.241486,-9999
nyu521924,587731513690816620,44.62545746,0.79421331,2738,40,5,216,GALAXY,17.243179,6.321528E-3,16.396868,5.669856E-3,17.302721,0.025557,16.478855,0.024131,1570.24243,969.902588,5.150913,17.130253,3.325674,4.725,28.29757868,161.7,25.587524,30.965004,34.771614,16.370596,20.061569,23.14193,139.655228,139.383163,138.944016
nyu521851,587731513690423434,43.69916515,0.75233225,2738,40,5,210,GALAXY,17.017733,5.812173E-3,16.039129,4.083317E-3,17.169785,0.015035,16.266106,9.864422E-3,1190.18164,715.165161,8.202299,23.568344,2.873383,4.725,28.29757866,161.7,38.749119,42.285477,38.952286,11.994661,13.669825,16.560368,108.47068,108.248466,111.360893
nyu521845,587731513690423414,43.66361146,0.74307263,2738,40,5,210,GALAXY,17.956177,7.230054E-3,17.086863,5.45366E-3,18.06217,0.013516,17.180649,0.012072,1106.0531,391.966034,3.419698,9.530886,2.787055,4.725,28.29757866,161.7,15.945002,19.627123,23.004902,7.429063,8.904007,9.347432,102.21595,102.430206,99.778076
nyu521493,587731513687474297,37.04044708,0.79904697,2738,40,5,165,GALAXY,14.782063,2.217838E-3,13.936993,1.984863E-3,14.825244,0.014567,14.012478,0.013852,1615.01733,1423.87817,10.57257,35.764317,3.382746,4.725,28.29757871,161.7,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999
nyu521466,587731513687343218,36.61107888,0.77086824,2738,40,5,163,GALAXY,18.581121,9.415165E-3,17.663086,6.651267E-3,18.589346,0.014619,17.712181,0.011144,1358.81494,243.078003,2.734151,7.890196,2.885794,4.725,28.29757871,161.7,12.354918,18.385498,22.447977,8.835796,11.597978,14.566046,122.380707,105.213081,123.291901
nyu521245,587731513685442613,32.32134235,0.76791259,2738,40,5,134,GALAXY,16.079279,3.167834E-3,15.286343,2.714901E-3,16.117294,0.023373,15.332881,0.022827,1332.79785,713.233215,4.934864,17.460424,3.538177,4.725,28.2975785,161.7,35.180912,40.32814,42.377174,21.48251,24.268541,26.772141,5.761096,4.95084,13.967342
nyu521216,587731513685180461,31.7590065,0.75644645,2738,40,5,130,GALAXY,16.169676,3.382099E-3,15.33102,2.755882E-3,16.235474,5.587217E-3,15.412722,4.623594E-3,1228.49561,1044.90747,6.978205,22.514786,3.226444,4.725,28.2975785,161.7,30.332756,35.088398,40.916386,25.705971,31.452938,35.776104,15.958732,16.341867,24.054262
nyu521212,587731513685115027,31.58478731,0.71984765,2738,40,5,129,GALAXY,16.438738,4.01591E-3,15.571342,3.123066E-3,16.527794,7.259498E-3,15.652768,7.941012E-3,895.759094,822.121704,7.42196,22.967096,3.094478,4.725,28.29757849,161.7,33.750938,37.792583,40.887245,19.179512,23.437595,26.612301,162.122086,156.210449,161.191467
nyu521207,587731513685049436,31.48761741,0.77333045,2738,40,5,128,GALAXY,15.015561,2.402805E-3,14.151653,2.053094E-3,15.095301,3.904956E-3,14.237864,3.502973E-3,1381.93201,1299.49158,13.79278,43.86681,3.180418,4.725,28.29757849,161.7,54.017925,67.604935,76.396111,44.751633,53.662132,58.682884,109.117416,110.08622,112.721687
nyu521177,587731513684852833,30.95012053,0.78866671,2738,40,5,125,GALAXY,17.634199,6.139705E-3,16.723146,4.465215E-3,17.709942,0.011154,16.832438,7.687475E-3,1521.74414,495.568573,3.4612,9.341852,2.699021,4.725,28.29757846,161.7,14.915357,16.968805,18.088434,11.169713,12.094904,14.739577,124.056923,117.735123,131.010971
nyu521169,587731513684787370,30.83740274,0.66840801,2738,40,5,124,GALAXY,16.687014,4.323506E-3,15.732749,3.231867E-3,16.738291,0.040901,15.809983,0.023123,428.591278,832.205261,7.042278,23.46483,3.331994,4.725,28.29757845,161.7,25.710318,39.755672,45.337887,22.276403,26.124069,29.419519,70.721497,89.986389,95.754089
nyu521160,587731513684721818,30.73267326,0.74070216,2738,40,5,123,GALAXY,16.319229,3.334087E-3,15.409176,2.852258E-3,16.337988,0.020704,15.47928,0.019885,1085.75598,1240.84167,4.182738,12.220387,2.921624,4.725,28.29757843,161.7,24.419415,28.728567,31.789158,16.623594,21.822193,28.08341,87.927513,81.423012,80.280418
nyu521153,587731513684656255,30.4746916,0.72120931,2738,40,5,122,GALAXY,16.8344,4.759485E-3,16.03504,3.629885E-3,16.959618,6.75406E-3,16.18853,6.08028E-3,908.687988,256.635254,5.183119,13.728243,2.648645,4.725,28.29757843,161.7,22.855537,25.798807,30.79422,12.518196,14.143012,14.480179,44.698227,46.11824,46.257027
nyu521081,587731513684000782,28.95968122,0.72200948,2738,40,5,112,GALAXY,15.673993,2.886654E-3,14.818435,2.451171E-3,15.765471,0.013265,14.921567,0.011571,916.502319,92.640381,7.836071,23.693369,3.023628,4.725,28.29757829,161.7,45.921906,49.929199,50.891014,18.987196,22.041079,26.547173,50.966667,49.274448,53.303471
nyu520967,587731513682952337,26.60851196,0.81547366,2738,40,5,96,GALAXY,17.224504,4.922111E-3,16.361603,3.837493E-3,17.327045,6.682296E-3,16.494938,5.016013E-3,1766.37817,492.899994,3.860575,10.458668,2.709096,4.725,28.29757822,161.7,16.61532,20.001551,22.339334,13.886932,17.130026,19.09931,139.803833,167.36293,9.773356
nyu520952,587731513682821237,26.277624,0.76882841,2738,40,5,94,GALAXY,17.203262,5.471171E-3,16.339411,4.131036E-3,17.287115,0.010376,16.442511,8.799519E-3,1342.52197,206.620285,5.989542,18.307861,3.056638,4.725,28.29757823,161.7,18.886814,24.965752,27.060595,18.465246,23.317968,24.249216,46.179798,51.191319,38.046535
nyu520946,587731513682755731,26.15857334,0.8249215,2738,40,5,93,GALAXY,18.402611,0.010228,17.540981,7.681016E-3,18.471012,0.018293,17.641373,0.013467,1852.17249,484.90918,4.255907,11.821452,2.777658,4.725,28.29757825,161.7,13.383735,14.163062,16.084536,10.078633,13.579605,14.221193,91.080353,97.743744,110.725609
nyu520942,587731513682755599,26.14209497,0.73852814,2738,40,5,93,GALAXY,15.944943,3.266154E-3,15.035778,2.602715E-3,15.991489,7.936085E-3,15.096517,6.738149E-3,1067.02332,335.425201,9.939967,31.962816,3.215586,4.725,28.29757825,161.7,39.871067,46.410213,52.661835,29.213421,37.753693,42.482109,169.199631,167.784531,162.456635
nyu520940,587731513682690316,26.11160691,0.738404,2738,40,5,92,GALAXY,17.890417,7.272975E-3,17.017431,5.344783E-3,17.926409,0.023486,17.092449,0.018481,1065.89661,1419.17358,4.426022,14.432914,3.260923,4.725,28.29757825,161.7,17.395838,22.462801,23.477762,13.390547,16.507797,19.064692,124.442863,118.842049,128.367859
nyu520929,587731513682624610,25.8507919,0.83590905,2738,40,5,91,GALAXY,17.479469,5.75383E-3,16.483274,4.138293E-3,17.525839,0.034481,16.616795,0.02398,1951.98242,408.346466,4.314992,12.710568,2.945676,4.725,28.29757827,161.7,22.67078,23.057474,27.251648,9.818606,11.999587,15.793717,122.861938,127.861816,116.650864
nyu520908,587731513682231433,25.06435264,0.83148632,2738,40,5,85,GALAXY,16.68257,4.281327E-3,15.712638,3.246457E-3,16.572536,0.013614,15.663802,0.011595,1912.13721,1424.72644,8.962519,23.859573,2.66215,4.725,28.29757822,107.8,40.905449,44.638634,42.766533,13.465933,16.939409,20.790874,76.734116,74.811813,76.667259
nyu520902,587731513682165929,24.87665916,0.78262522,2738,40,5,84,GALAXY,16.702868,4.347511E-3,15.827922,3.326058E-3,16.569084,8.206055E-3,15.744654,6.236562E-3,1468.29541,1079.45911,7.361332,25.103666,3.410207,4.725,28.29757821,107.8,31.733744,35.837452,36.553009,24.615185,28.078909,30.628189,10.226882,8.043821,10.703949
nyu520895,587731513682100423,24.6911009,0.69920477,2738,40,5,83,GALAXY,16.763186,4.619418E-3,15.918243,3.507786E-3,16.734661,0.015612,15.890397,0.015289,710.080994,753.671936,5.8504,15.859193,2.710788,4.725,28.29757819,107.8,27.240917,31.02051,35.468582,10.535096,12.784732,13.893148,6.27911,5.423179,6.197678
nyu520807,587731513681379485,23.08215477,0.72093658,2738,40,5,72,GALAXY,18.327391,0.010222,17.421604,8.466083E-3,18.327316,0.017618,17.468273,0.013436,907.547058,1097.5238,3.888423,12.053643,3.09988,4.725,28.2975781,107.8,14.826949,16.080463,19.413992,10.757008,14.536237,16.379881,17.036516,34.467823,48.543404
nyu520805,587731513681379431,22.96916187,0.69150441,2738,40,5,72,GALAXY,17.65226,6.547921E-3,16.734045,4.711488E-3,17.781704,0.010542,16.871056,7.247722E-3,639.906189,70.186386,4.725158,12.600778,2.666742,4.725,28.2975781,107.8,15.608818,18.48337,21.039246,12.547379,16.129784,15.325782,128.897079,146.266891,140.898315
nyu520798,587731513681314002,22.92628391,0.7176177,2738,40,5,71,GALAXY,18.651955,0.010794,17.772961,7.708767E-3,18.524496,0.023025,17.701254,0.016379,877.289551,1041.27502,4.730663,12.55428,2.65381,4.725,28.29757811,107.8,15.689884,17.168064,20.363605,8.291042,10.363713,11.161011,156.276443,151.238602,158.550186
nyu520796,587731513681313982,22.9077081,0.7360941,2738,40,5,71,GALAXY,18.131813,0.012309,17.257967,8.741364E-3,18.42252,0.024798,17.603062,0.018294,1045.27087,872.317566,6.656127,17.430141,2.618661,4.725,28.29757811,107.8,14.200824,16.619869,18.494568,11.424639,15.873932,16.50156,134.580917,49.046875,137.396942
nyu520756,587731513681051742,22.31167724,0.64576373,2738,40,5,67,GALAXY,18.415422,0.01174,17.404291,8.720315E-3,18.384258,0.070933,17.423634,0.043865,224.519608,897.756165,6.419702,18.123524,2.82311,4.725,28.29757802,107.8,23.118429,31.759424,34.344673,6.571926,7.707867,8.262744,29.147388,25.566391,27.29929
nyu520724,587731513680724115,21.54571775,0.70847433,2738,40,5,62,GALAXY,18.193876,0.010528,17.266554,6.976944E-3,18.350698,0.018245,17.437035,0.01229,794.802368,738.873169,4.67505,12.519751,2.677993,4.725,28.29757794,161.7,14.012385,17.780054,20.168282,10.543356,12.964168,13.962736,96.240089,96.906532,123.079353
nyu520671,587731513680134226,20.13039793,0.78573527,2738,40,5,53,GALAXY,17.566698,5.770986E-3,16.682861,4.407121E-3,17.592182,0.050307,16.771843,0.038842,1496.68127,120.803093,4.396954,13.189996,2.999803,4.725,28.29757793,161.7,23.711514,24.646925,24.120878,7.983174,10.139917,12.075926,63.772316,63.539551,72.829216
nyu520662,587731513680068740,20.11025382,0.69748673,2738,40,5,52,GALAXY,16.896025,4.622329E-3,15.973787,3.464667E-3,16.951611,8.308419E-3,16.050804,6.527246E-3,694.4505,1298.96692,6.367899,20.495493,3.218564,4.725,28.29757793,161.7,24.243683,33.310741,38.386005,22.034136,27.836435,31.045704,69.295158,85.51503,79.604408
nyu520660,587731513680068682,20.02527344,0.68175261,2738,40,5,52,GALAXY,17.594971,6.451316E-3,16.709484,4.671017E-3,17.671371,0.047364,16.820751,0.04427,551.39856,526.413879,4.290453,13.569373,3.16269,4.725,28.29757793,161.7,26.386854,29.413609,29.162693,8.251842,9.744657,12.080566,21.982679,18.334261,13.68946
nyu520649,587731513679937666,19.81126987,0.73780945,2738,40,5,50,GALAXY,17.317635,7.342496E-3,16.347725,5.067152E-3,17.505377,0.031478,16.599676,0.02252,1060.98779,1302.6084,9.14659,27.125727,2.965666,4.725,28.29757793,161.7,37.473118,42.435352,46.094437,11.501497,14.951415,15.867186,0.76937,2.582978,4.707421
nyu520613,587731513679609948,18.95861841,0.80935201,2738,40,5,45,GALAXY,18.092171,7.83564E-3,17.227879,5.902908E-3,18.21167,0.014798,17.361555,0.011455,1711.74854,355.592987,3.16978,8.562401,2.70126,4.725,28.29757786,161.7,16.181768,20.683254,21.850855,7.570526,9.009545,10.819894,57.036205,60.561775,63.037106
nyu520599,587731513679544433,18.80607224,0.71870968,2738,40,5,44,GALAXY,17.373632,4.921538E-3,16.51285,3.906771E-3,17.425375,9.999149E-3,16.56698,8.587661E-3,887.90033,330.157166,2.910895,8.316962,2.857183,4.725,28.29757788,161.7,15.956719,20.758949,24.325268,11.765638,14.238015,15.641267,66.9133,62.070919,70.02095
nyu520585,587731513679478912,18.70793886,0.72454292,2738,40,5,43,GALAXY,17.250353,5.391983E-3,16.402863,4.125508E-3,17.301899,0.011395,16.467703,0.042087,940.936768,799.036621,5.620151,16.995138,3.023965,4.725,28.29757786,161.7,20.672674,25.712517,27.920244,16.004215,19.247585,19.803196,48.09845,56.065708,65.040443
nyu520563,587731513679347830,18.42244693,0.66780325,2738,40,5,41,GALAXY,17.454353,5.910362E-3,16.513018,4.243033E-3,17.491182,0.011237,16.560671,8.144702E-3,425.071289,925.902405,5.195022,16.630739,3.201284,4.725,28.29757785,107.8,18.864319,24.582672,27.495058,16.483027,20.761051,22.90835,178.44397,12.256051,23.902657
nyu520496,587731513678757986,17.03125481,0.82331876,2738,40,5,32,GALAXY,16.903639,4.607032E-3,15.939811,3.441777E-3,16.973223,0.023619,16.056738,0.020288,1838.48755,526.331299,5.894587,18.643904,3.162885,4.725,28.29757785,161.7,29.417931,33.073048,36.757011,14.075699,18.146029,21.637194,135.077682,130.680283,132.740204
nyu520477,587731513678692458,16.84385391,0.71426951,2738,40,5,31,GALAXY,16.871407,4.509697E-3,15.983642,3.48114E-3,16.930708,8.40162E-3,16.072681,6.933955E-3,847.312805,183.90773,5.952722,18.780872,3.155006,4.725,28.29757786,107.8,23.409597,29.202379,32.451256,20.158794,25.4722,27.846825,121.49221,116.630173,111.263321
nyu520461,587731513678626969,16.8082707,0.79271964,2738,40,5,30,GALAXY,16.030924,3.239846E-3,15.151643,2.64431E-3,16.089251,7.891573E-3,15.255706,6.675395E-3,1560.40283,1221.16797,7.867753,24.226559,3.079222,4.725,28.29757785,107.8,40.531727,48.230881,48.937813,21.47253,23.452024,27.01824,75.722198,73.708954,74.501358
nyu518434,587731513159975004,58.32728446,0.25880172,2738,40,4,308,GALAXY,18.500334,0.011241,17.363335,7.095539E-3,18.554577,0.022495,17.427868,0.015087,516.580811,321.742065,4.577175,13.926508,3.042599,4.76,28.24793583,161.7,12.973927,19.630917,22.536087,9.996873,14.022403,16.065916,109.024658,98.509613,90.215279
nyu518415,587731513159843968,58.08188001,0.37576126,2738,40,4,306,GALAXY,16.426254,3.505429E-3,15.48857,2.93191E-3,16.584974,0.021558,15.645481,0.019549,1579.89771,812.53595,4.430654,12.787766,2.886203,4.76,28.24793584,161.7,34.308502,41.496441,45.948288,14.2268,18.733002,23.324646,114.727859,111.106331,111.478851
nyu518288,587731513158926476,55.94020413,0.3482179,2738,40,4,292,GALAXY,17.384489,5.912543E-3,16.384174,4.091557E-3,17.341854,9.424962E-3,16.369944,6.418283E-3,1329.73425,396.96814,5.070235,16.954666,3.343961,4.76,28.24793598,161.7,18.782072,23.181078,25.044716,18.013971,21.406029,22.252254,149.706772,111.251266,125.925697
nyu518037,587731513157615707,53.0334592,0.3533857,2738,40,4,272,GALAXY,15.079762,2.565041E-3,14.150904,2.208312E-3,14.913023,0.018543,14.041658,0.014441,1376.80212,1192.18518,19.969946,53.571434,2.682603,4.76,28.2479362,161.7,93.27623,103.49015,103.841507,28.966373,33.747807,38.555302,73.848236,74.331383,74.019142
nyu518034,587731513157615663,53.00570263,0.27947,2738,40,4,272,GALAXY,14.899091,2.253548E-3,13.959326,2.010936E-3,14.872771,0.025506,13.96459,0.022572,704.783752,940.080627,12.084782,43.520676,3.601279,4.76,28.2479362,161.7,73.980751,86.893967,93.759468,40.604164,49.061028,48.932301,65.418053,67.131477,69.074753
nyu517993,587731513157419196,52.60538819,0.27380317,2738,40,4,269,GALAXY,16.835859,5.666744E-3,15.739762,4.6098E-3,16.913885,0.017733,15.945171,0.012822,653.921204,1383.83948,9.231984,24.530352,2.657105,4.76,28.24793615,161.7,34.607243,36.925694,42.020348,16.088163,20.8491,22.283144,179.974243,3.405937,5.295778
nyu517884,587731513156960370,51.4128791,0.24212402,2738,40,4,262,GALAXY,17.241144,5.187971E-3,16.297611,3.980563E-3,17.323387,0.026224,16.414463,0.022646,365.689972,70.086784,5.012873,15.278556,3.047864,4.76,28.24793617,161.7,26.6049,35.694168,36.1754,12.1203,12.952091,15.348489,39.022465,36.2328,33.437157
nyu517874,587731513156894887,51.36959574,0.27853087,2738,40,4,261,GALAXY,15.87096,3.060818E-3,14.931813,2.527854E-3,15.943184,7.239694E-3,15.016699,6.95099E-3,696.713196,1037.54724,9.216872,29.035015,3.150203,4.76,28.24793617,161.7,41.031803,49.676628,55.433483,25.77124,31.007496,34.44268,123.126221,124.162308,124.899094
nyu517802,587731513156632699,50.77199858,0.35428141,2738,40,4,257,GALAXY,15.829353,3.08473E-3,14.87702,2.517615E-3,15.842179,6.584984E-3,14.908139,5.782594E-3,1385.1311,1048.53882,11.715748,39.37611,3.360956,4.76,28.2479362,161.7,42.081169,51.485134,57.575401,34.815075,47.307579,53.37923,172.83078,172.047058,179.13063
nyu517697,587731513156370604,50.13068583,0.30502017,2738,40,4,253,GALAXY,16.745224,3.879945E-3,15.792101,3.1532E-3,16.810602,0.012829,15.873308,0.012737,937.472412,662.447754,4.376828,13.271815,3.03229,4.76,28.24793614,161.7,24.500969,28.968489,30.494921,12.281034,15.198743,17.822466,65.47979,61.573711,68.263275
nyu517285,587731513154797724,46.60500835,0.24427867,2738,40,4,229,GALAXY,18.177946,8.739457E-3,17.230137,6.283709E-3,18.259977,0.023134,17.340475,0.01766,384.662018,1273.75,4.498822,13.737119,3.053492,4.76,28.2479362,161.7,18.564863,23.921307,30.307276,8.836763,12.929669,13.752995,11.098229,10.014757,12.847773
nyu517246,587731513154666558,46.23775988,0.21681633,2738,40,4,227,GALAXY,15.139377,2.576981E-3,14.134413,2.141582E-3,15.244792,0.027385,14.282784,0.026802,135.552261,657.087341,13.737156,45.329071,3.299742,4.76,28.24793616,161.7,86.021927,103.777443,104.480507,29.394497,34.882225,39.65316,177.044174,176.13591,176.339706
nyu517230,587731513154601009,46.02846464,0.40547636,2738,40,4,226,GALAXY,16.333303,3.522403E-3,15.397949,2.851391E-3,16.332989,0.017643,15.414721,0.015061,1850.61658,114.730621,7.030823,24.379589,3.46753,4.76,28.24793615,161.7,35.063431,39.271244,43.949379,23.486868,28.8738,32.518909,127.705078,129.157883,124.82972
nyu517218,587731513154535497,45.99498282,0.39065321,2738,40,4,225,GALAXY,15.777357,2.942573E-3,14.896999,2.499626E-3,15.924989,4.519779E-3,15.056753,3.907779E-3,1715.93567,1171.3512,7.187881,19.393652,2.698104,4.76,28.24793617,161.7,28.181948,33.358471,36.926678,27.089294,33.105244,36.724007,167.083023,143.869385,125.217537
nyu517215,587731513154535584,45.94108007,0.34220214,2738,40,4,225,GALAXY,17.74659,7.866213E-3,16.766825,5.630424E-3,17.845297,0.018807,16.940401,0.016367,1275.42615,681.499268,6.77198,18.059317,2.66677,4.76,28.24793617,161.7,24.234287,26.786488,28.341124,9.921988,12.767808,14.492472,104.352226,112.86721,105.799187
nyu517214,587731513154535471,45.97046817,0.41527299,2738,40,4,225,GALAXY,14.63913,2.187653E-3,13.727399,1.918477E-3,14.785393,2.752105E-3,13.884984,2.182549E-3,1939.63757,948.427673,15.554885,48.527027,3.119729,4.76,28.24793617,161.7,61.217304,69.278511,68.671227,53.460751,61.566002,64.027016,87.879219,92.066589,77.247353
nyu516979,587731513153224797,42.9758927,0.2310206,2738,40,4,205,GALAXY,18.070116,8.431173E-3,17.17149,6.55776E-3,18.042162,0.017684,17.126522,0.012964,264.836945,945.896912,5.448085,17.15947,3.149633,4.76,28.24793622,161.7,16.543713,21.019833,24.382847,13.291553,18.229723,17.522644,135.246704,136.615707,120.719032
nyu516933,587731513152962713,42.35644597,0.35438482,2738,40,4,201,GALAXY,17.325153,6.064935E-3,16.433643,4.517142E-3,17.405031,0.010118,16.500677,7.327456E-3,1386.45227,757.86438,5.879596,16.39909,2.789152,4.76,28.24793624,161.7,19.117228,23.298662,27.345592,15.764473,19.401991,19.676928,79.489784,95.970764,93.32135
nyu516926,587731513152897134,42.19158169,0.34154541,2738,40,4,200,GALAXY,18.212027,8.905409E-3,17.286856,6.654606E-3,18.318651,0.015832,17.406193,0.011192,1269.71106,620.162842,4.154541,11.134728,2.680135,4.76,28.24793624,161.7,13.909644,15.554531,17.966469,9.386341,12.686765,13.651473,103.482841,87.74968,67.178314
nyu516894,587731513152700520,41.68573269,0.36952693,2738,40,4,197,GALAXY,16.880556,4.163029E-3,15.999076,3.437381E-3,16.948816,0.014714,16.085312,0.013867,1524.18604,104.269707,3.74278,10.625168,2.838844,4.76,28.24793624,161.7,21.059963,26.200045,30.633966,11.212318,13.712716,16.485769,119.093292,118.873108,132.550354
nyu516838,587731513152110686,40.38866574,0.3848274,2738,40,4,188,GALAXY,16.553974,3.92755E-3,15.768021,3.313227E-3,16.633005,9.937652E-3,15.846143,8.377091E-3,1662.93054,560.895935,6.834401,19.979143,2.923321,4.76,28.24793626,161.7,29.837112,33.728695,37.614529,16.929007,21.924307,23.498312,127.726212,120.62542,124.344872
nyu516825,587731513151783028,39.64495279,0.32582508,2738,40,4,183,GALAXY,17.499439,6.257556E-3,16.592594,4.796144E-3,17.426819,0.027936,16.581364,0.026826,1126.83826,604.692017,5.788724,15.793946,2.728399,4.76,28.24793621,161.7,27.517277,31.525681,33.966217,9.465216,10.545534,11.873255,81.861542,82.945778,78.613556
nyu516769,587731513151193225,38.35250355,0.21247653,2738,40,4,174,GALAXY,17.523363,6.506523E-3,16.731834,5.208171E-3,17.648867,0.012756,16.847418,9.861177E-3,96.502647,1104.30798,5.839393,15.322805,2.624041,4.76,28.24793623,161.7,16.974472,19.216019,21.771749,15.293935,18.466011,19.253939,57.962208,95.186005,69.730309
nyu516761,587731513151127592,38.16738322,0.26007343,2738,40,4,173,GALAXY,13.959692,1.881997E-3,13.180564,1.768915E-3,13.968092,6.285975E-3,13.183274,5.946391E-3,529.06134,782.087402,20.490782,60.57494,2.956204,4.76,28.24793623,161.7,109.770866,127.874336,134.692825,44.040359,48.765614,53.266319,72.015884,73.305779,73.538643
nyu516756,587731513151062160,38.04905145,0.22403874,2738,40,4,172,GALAXY,16.891998,4.405862E-3,16.067188,3.604577E-3,16.837368,8.941358E-3,16.003517,7.861488E-3,201.549408,1067.38623,6.534858,22.632692,3.463379,4.76,28.24793623,161.7,27.963417,37.564758,40.83152,19.711704,24.165695,27.81082,6.630988,5.715574,9.615232
nyu516632,587731513150079165,35.76277934,0.3982027,2738,40,4,157,GALAXY,17.778986,7.280353E-3,16.87252,5.309703E-3,17.9482,0.013764,17.047066,0.010124,1785.36426,697.545105,4.248014,11.231812,2.644014,4.76,28.24793623,161.7,18.357368,22.700485,20.99424,9.222028,10.196983,12.387403,65.618767,64.370644,57.872528
nyu516611,587731513149882526,35.29504904,0.2750283,2738,40,4,154,GALAXY,17.534311,0.024579,16.475,5.249507E-3,17.528582,0.015315,16.684921,0.012623,665.472412,528.808105,5.672379,15.168194,2.674044,4.76,28.24793621,161.7,24.893799,28.064095,31.225973,9.234008,11.600879,13.380772,82.777054,81.698761,77.804665
nyu516468,587731513148571766,32.28978511,0.35820799,2738,40,4,134,GALAXY,17.026047,4.671898E-3,16.128571,3.66034E-3,17.16357,6.871341E-3,16.277531,5.386091E-3,1422.45361,426.778107,5.032612,13.12213,2.607419,4.76,28.24793602,107.8,20.784252,23.518864,25.941133,13.108687,15.219547,16.257542,140.483643,136.892059,138.028748
nyu516424,587731513148113073,31.32578979,0.23135758,2738,40,4,127,GALAXY,17.132811,4.801448E-3,16.22377,3.798109E-3,17.104063,8.371181E-3,16.194483,6.307968E-3,269.194824,1189.91284,5.439204,18.970726,3.487776,4.76,28.24793601,107.8,22.726091,25.625223,29.031517,18.629978,22.91062,24.733019,124.925461,128.212341,131.453949
nyu516401,587731513148047431,31.05469175,0.32544173,2738,40,4,126,GALAXY,17.021414,4.757704E-3,16.230671,3.911382E-3,17.104883,6.629377E-3,16.31731,5.492204E-3,1124.8147,85.891937,4.54135,13.835671,3.046599,4.76,28.24793597,107.8,20.846216,23.904816,26.893368,15.55327,17.030661,18.494774,105.664917,111.78093,102.489258
nyu516388,587731513147981960,30.92236486,0.27265501,2738,40,4,125,GALAXY,16.596508,4.573715E-3,15.603875,3.519864E-3,16.723179,0.063098,15.786489,0.058589,644.840759,243.979721,9.881139,30.177721,3.054073,4.76,28.24793598,107.8,48.952019,57.994442,71.766609,10.73905,12.914421,13.263444,80.877014,79.525993,79.988518
nyu516387,587731513147981939,30.91433846,0.21592085,2738,40,4,125,GALAXY,15.7952,3.103512E-3,14.874685,2.54957E-3,15.808436,6.079835E-3,14.922049,4.349721E-3,129.151489,171.189041,12.314582,39.330456,3.193811,4.76,28.24793598,107.8,47.399529,57.45327,64.027695,33.488083,41.590618,46.165291,16.681108,20.219492,18.225594
nyu516386,587731513147916489,30.88573524,0.23041298,2738,40,4,124,GALAXY,17.337706,6.165208E-3,16.451942,4.732803E-3,17.531342,0.012165,16.665382,0.010185,260.875916,1272.09485,6.246879,17.154341,2.746066,4.76,28.24793597,107.8,23.188652,27.065619,29.18475,12.42269,14.504123,16.781675,179.538864,9.471974,5.22502
nyu516384,587731513147916470,30.85020125,0.25090572,2738,40,4,124,GALAXY,18.205667,7.229788E-3,17.348761,5.676198E-3,18.271463,0.010438,17.419807,7.638394E-3,447.153473,948.975647,2.799526,7.419024,2.6501,4.76,28.24793597,107.8,10.482597,12.833223,13.19406,9.729577,10.352395,10.711374,57.265549,109.148376,114.84613
nyu516381,587731513147916304,30.81677815,0.29882498,2738,40,4,124,GALAXY,15.063398,2.446566E-3,14.163038,2.121741E-3,15.201342,5.105315E-3,14.300245,5.328809E-3,882.823914,644.944824,13.914083,40.659172,2.92216,4.76,28.24793597,107.8,53.863247,68.343559,78.434807,37.917957,47.152496,53.192165,22.139399,19.595358,16.189445
nyu516377,587731513147916421,30.77110341,0.23015851,2738,40,4,124,GALAXY,16.956606,4.561759E-3,16.044033,3.626267E-3,16.829535,8.968628E-3,15.971218,7.442356E-3,258.594299,229.930222,7.089064,25.398024,3.582705,4.76,28.24793597,107.8,31.799543,38.126244,40.566048,20.898447,23.924793,26.444153,38.329506,38.938583,40.080677
nyu516126,587731513145884817,26.21738702,0.26450287,2738,40,4,93,GALAXY,17.640539,5.962824E-3,16.780893,4.704761E-3,17.74593,0.011618,16.891884,8.799522E-3,571.71698,1020.58008,3.441233,9.520648,2.766639,4.76,28.24793577,107.8,16.809517,18.889812,19.316624,9.124404,11.190969,12.416052,112.333961,111.817818,118.523239
nyu516090,587731513145491691,25.34141104,0.37103197,2738,40,4,87,GALAXY,15.701145,2.99321E-3,14.863489,2.571802E-3,15.828291,0.012872,15.046301,0.011892,1540.42383,1222.24133,8.894395,24.426752,2.746309,4.76,28.24793577,107.8,44.338707,50.779423,54.372097,20.971462,25.064646,28.936062,161.25209,161.373001,162.372986
nyu516084,587731513145491603,25.23295539,0.29810641,2738,40,4,87,GALAXY,17.236507,5.023276E-3,16.304449,3.895402E-3,17.290035,8.778308E-3,16.38105,0.011598,877.44751,236.52858,4.794014,14.818647,3.091073,4.76,28.24793577,107.8,19.330151,22.900126,27.399328,16.972311,22.6346,24.613754,139.857315,27.446354,170.497192
nyu515974,587731513144377532,22.73006073,0.3968999,2738,40,4,70,GALAXY,17.548317,6.752084E-3,16.507517,4.711419E-3,17.715649,0.016208,16.685352,0.011941,1775.81311,617.991455,6.058938,16.885761,2.786918,4.76,28.24793566,107.8,20.880241,24.701458,28.247297,11.734618,16.145441,17.651598,100.101402,110.786926,101.694794
nyu515969,587731513144377504,22.68529583,0.38407485,2738,40,4,70,GALAXY,16.845909,4.407848E-3,15.916212,3.496779E-3,16.963936,0.046942,16.038509,0.042928,1659.31689,211.102051,5.971971,18.881554,3.161695,4.76,28.24793566,107.8,34.530224,33.830112,37.188648,9.670493,14.063044,14.822182,171.736237,171.55513,167.470367
nyu515927,587731513143787618,21.35073671,0.39611179,2738,40,4,61,GALAXY,17.962368,7.766778E-3,17.049864,5.781817E-3,17.82482,0.017939,16.966488,0.013444,1768.96448,327.23703,6.575556,17.80658,2.707996,4.76,28.24793548,107.8,26.133591,31.082098,32.340771,9.849909,10.124408,10.73268,9.031343,7.424155,7.821712
nyu515912,587731513143656509,21.04113273,0.32013624,2738,40,4,59,GALAXY,16.785692,5.526282E-3,15.876249,4.280897E-3,17.027731,0.015994,16.082945,0.025663,1078.07568,234.635651,12.304672,35.595501,2.892844,4.76,28.2479355,107.8,50.864853,53.351177,51.706459,9.272698,12.410687,13.438835,66.197723,65.574455,67.611732
nyu515898,587731513143525492,20.77560345,0.34780424,2738,40,4,57,GALAXY,16.657883,4.661792E-3,15.832071,3.66027E-3,16.858009,9.571995E-3,16.047689,0.011803,1329.67786,542.558411,7.006335,20.124228,2.87229,4.76,28.24793546,107.8,32.842957,39.173927,38.401501,12.571859,14.869062,17.054869,161.339294,164.064148,165.561813
nyu515870,587731513143394377,20.52539083,0.26106339,2738,40,4,55,GALAXY,17.688604,7.607035E-3,16.808651,5.953514E-3,17.850328,0.014912,17.046686,0.011753,541.055176,990.303528,6.431274,17.743748,2.758979,4.76,28.24793545,107.8,17.66185,21.806036,22.261995,14.139827,17.624538,20.262981,138.533005,145.343567,157.567688
nyu515854,587731513143197814,20.00581499,0.27841035,2738,40,4,52,GALAXY,18.354036,9.337512E-3,17.533676,8.840874E-3,18.426218,0.011989,17.580265,0.010275,698.713013,349.762421,2.735167,7.992287,2.922047,4.76,28.24793544,107.8,11.172421,15.811191,18.095161,9.382231,11.639545,14.991907,97.251579,133.443115,169.278824
nyu515852,587731513143197808,19.98390942,0.2753883,2738,40,4,52,GALAXY,17.806458,6.501739E-3,16.948425,5.212489E-3,17.886089,9.699474E-3,17.031616,7.306555E-3,671.231323,150.614868,3.62323,9.915326,2.736598,4.76,28.24793544,107.8,14.36546,16.825567,20.82876,10.131882,12.110105,12.806474,39.229362,39.020344,47.731857
nyu515849,587731513143132274,19.94615816,0.33648326,2738,40,4,51,GALAXY,18.083771,9.289645E-3,17.20602,6.955298E-3,18.284521,0.021769,17.402071,0.016213,1226.73206,1168.20142,5.527526,16.258963,2.941454,4.76,28.24793545,107.8,18.68783,23.30267,23.654022,8.907055,11.959979,13.41505,47.54594,47.946941,51.71056
nyu515829,587731513142935689,19.4971549,0.24172114,2738,40,4,48,GALAXY,16.982546,4.181522E-3,16.165228,3.565881E-3,17.045797,0.016795,16.250612,0.014397,365.270447,1169.13831,3.942931,10.871229,2.757144,4.76,28.24793544,107.8,22.699203,23.9356,25.262453,10.922882,13.406053,15.559428,23.847845,22.383209,23.27998
nyu515825,587731513142935647,19.43396145,0.2543232,2738,40,4,48,GALAXY,16.366642,4.662383E-3,15.39966,3.555601E-3,16.57213,0.015193,15.695642,0.012738,479.8815,594.565186,12.222168,32.900928,2.691906,4.76,28.24793544,107.8,40.26841,47.309315,50.168461,18.944876,24.134117,29.233219,23.009602,21.567259,27.889923
nyu515817,587731513142870169,19.32578908,0.25358734,2738,40,4,47,GALAXY,17.932167,7.798511E-3,16.914518,5.446571E-3,18.028019,0.058395,17.103228,0.044118,473.261169,972.139709,4.840806,14.982674,3.095078,4.76,28.24793541,107.8,28.729053,35.425541,36.417854,8.784115,10.014218,10.917325,80.999641,82.772797,84.690018
nyu515815,587731513142870132,19.24610604,0.32595238,2738,40,4,47,GALAXY,17.601151,6.802921E-3,16.738922,5.204363E-3,17.705309,0.17459,16.830379,0.180293,1131.27979,247.562714,5.523229,18.418982,3.334821,4.76,28.24793541,107.8,23.060566,29.352295,40.89637,14.668732,19.514858,24.003365,73.826622,79.082359,71.47892
nyu515814,587731513142870131,19.24880395,0.32673462,2738,40,4,47,GALAXY,16.336611,3.717138E-3,15.416966,2.968366E-3,16.41679,0.018805,15.510418,0.018912,1138.39148,272.085052,8.464418,28.564137,3.374613,4.76,28.24793541,107.8,34.793701,44.641682,49.888496,25.281734,36.774681,41.434254,71.265862,69.271004,76.362747
nyu515801,587731513142739121,19.00659218,0.38105069,2738,40,4,45,GALAXY,17.437592,6.157339E-3,16.554585,4.819111E-3,17.458132,0.012854,16.615461,0.013967,1632.24817,792.008301,7.043448,19.616255,2.785036,4.76,28.24793541,107.8,19.653162,24.031958,27.040014,17.489277,19.236603,23.17909,144.248428,161.669312,162.527573
nyu515794,587731513142739062,18.93687978,0.23332981,2738,40,4,45,GALAXY,16.574217,4.205069E-3,15.761577,3.53854E-3,16.752283,0.01663,15.955931,0.015648,289.234497,158.762939,7.220633,19.391504,2.685569,4.76,28.24793541,107.8,29.650261,32.054512,34.734432,13.63954,17.054779,19.081995,2.65767,3.633514,1.311331
nyu515787,587731513142673720,18.87992184,0.29924322,2738,40,4,44,GALAXY,15.892503,2.962157E-3,14.975598,2.503019E-3,15.920351,4.569655E-3,15.012574,3.393744E-3,888.506165,1001.74902,7.892247,24.678482,3.126927,4.76,28.24793541,107.8,33.46608,38.240936,42.893299,28.64476,33.64983,38.116119,22.886276,15.357257,173.126572
nyu515783,587731513142673693,18.85362499,0.2818118,2738,40,4,44,GALAXY,16.427124,3.703076E-3,15.559737,3.050931E-3,16.541935,0.013727,15.702912,0.012721,730.028748,762.753174,6.3651,20.281525,3.186364,4.76,28.24793541,107.8,29.994213,37.80685,40.460911,23.54623,29.275673,33.241943,169.499313,161.884155,164.151749
nyu515767,587731513142673610,18.78503248,0.30363157,2738,40,4,44,GALAXY,16.600092,4.269073E-3,15.771369,3.498403E-3,16.783705,0.011251,15.956236,0.010404,928.468079,139.123306,7.335286,19.463125,2.653356,4.76,28.24793541,107.8,24.960787,29.844362,32.762096,17.966906,22.746271,24.892031,137.487045,129.729279,137.314285
nyu515763,587731513142673452,18.80370413,0.34230571,2738,40,4,44,GALAXY,16.215347,3.367988E-3,15.361938,2.839406E-3,16.323368,4.403939E-3,15.472072,3.465394E-3,1280.10608,308.725952,6.862432,19.826788,2.889178,4.76,28.24793541,107.8,26.450291,30.777306,32.982498,23.138771,27.042366,32.247917,73.032089,66.260727,81.626076
nyu515762,587731513142673426,18.81575527,0.21347212,2738,40,4,44,GALAXY,15.459367,2.731306E-3,14.554446,2.310873E-3,15.584804,3.984909E-3,14.705617,3.162485E-3,108.846748,418.706024,10.683151,33.134312,3.101548,4.76,28.24793541,107.8,43.97155,55.785583,62.741749,35.345535,44.798103,50.039127,159.691254,166.221954,168.875351
nyu515757,587731513142608166,18.77286906,0.32221384,2738,40,4,43,GALAXY,16.097385,3.22577E-3,15.250861,2.746294E-3,16.257984,0.01704,15.413241,0.016781,1097.41577,1389.4845,6.088015,18.229221,2.99428,4.76,28.24793538,107.8,36.852718,45.180954,47.244576,16.700041,20.197962,25.275213,73.264481,75.20369,71.548294
nyu515753,587731513142608149,18.75980465,0.3074379,2738,40,4,43,GALAXY,16.958563,4.873843E-3,16.148575,4.140863E-3,17.094711,0.021086,16.280453,0.017503,963.070984,1270.77771,5.028243,14.357698,2.855411,4.76,28.24793538,107.8,24.443258,28.840652,27.295063,10.385411,11.789065,14.118876,111.951447,109.013649,114.793747
nyu515750,587731513142608135,18.73379392,0.39152534,2738,40,4,43,GALAXY,17.217096,5.174557E-3,16.36628,4.113297E-3,17.311577,7.494417E-3,16.449884,5.644617E-3,1727.57483,1034.04492,4.977331,13.107296,2.633399,4.76,28.24793538,107.8,-9999,20.348703,21.783903,-9999,16.448095,18.580664,-9999,61.481667,51.603264
nyu515749,587731513142608119,18.72606028,0.30327983,2738,40,4,43,GALAXY,15.575328,2.840081E-3,14.642734,2.365218E-3,15.705857,5.523746E-3,14.798655,4.364908E-3,925.28125,964.044067,10.158756,31.168089,3.068101,4.76,28.24793538,107.8,39.423107,46.776463,51.324829,35.638435,44.037663,48.279598,133.251083,141.787582,128.756424
nyu515746,587731513142608100,18.70300337,0.22998179,2738,40,4,43,GALAXY,16.41477,3.639516E-3,15.570586,3.03596E-3,16.495546,6.765975E-3,15.660112,4.840545E-3,258.931335,754.695923,6.509487,19.114845,2.93646,4.76,28.24793538,107.8,28.300323,31.187977,33.377518,19.146383,23.001173,25.780592,166.281265,164.794327,174.281143
nyu515741,587731513142608055,18.63711636,0.23377884,2738,40,4,43,GALAXY,17.209997,4.998946E-3,16.368166,4.025652E-3,17.276674,7.501887E-3,16.458246,5.852623E-3,293.482513,155.749649,4.903023,13.978489,2.850994,4.76,28.24793538,107.8,17.653717,21.757524,23.321491,15.877765,17.458035,20.331749,67.48291,71.979271,66.945137
nyu515737,587731513142607950,18.74839448,0.2592043,2738,40,4,43,GALAXY,15.811302,2.880401E-3,14.967917,2.520996E-3,15.891027,0.018901,15.05039,0.01717,524.53241,1167.22302,6.442571,21.112946,3.2771,4.76,28.24793538,107.8,35.762691,45.114143,50.533306,29.60677,35.668907,39.169029,103.05088,107.853027,106.508186
nyu515729,587731513142542498,18.62440854,0.21520186,2738,40,4,42,GALAXY,16.709408,4.270208E-3,15.846745,3.488368E-3,16.667536,0.030583,15.869414,0.024197,124.657707,1401.26465,8.196906,21.384844,2.608892,4.76,28.24793538,107.8,53.220638,58.758698,62.830524,11.450076,13.040736,14.331998,148.071945,149.712662,148.274536
nyu515727,587731513142542489,18.60286199,0.40804819,2738,40,4,42,GALAXY,16.773716,5.135865E-3,15.865804,5.419249E-3,16.82498,6.446465E-3,15.930679,5.180817E-3,1877.79126,1204.75647,5.762697,17.341631,3.00929,4.76,28.24793538,107.8,23.704233,27.535736,30.269266,17.168423,20.745895,22.168924,106.808868,107.891724,116.049713
nyu515723,587731513142542469,18.57772844,0.37101488,2738,40,4,42,GALAXY,17.897884,6.943241E-3,17.008919,5.30124E-3,17.938396,0.019247,17.112165,0.013746,1541.19019,976.390076,4.06461,11.592193,2.851982,4.76,28.24793538,107.8,15.305021,18.913939,22.658354,12.15206,13.251559,13.828284,42.596622,38.185669,23.765024
nyu515696,587731513142345836,18.15916136,0.21256362,2738,40,4,39,GALAXY,17.777439,6.703231E-3,16.874096,5.015949E-3,17.81587,0.013109,16.928524,9.508295E-3,100.575623,1254.60938,4.474072,13.02145,2.910424,4.76,28.24793538,107.8,17.271669,19.506958,22.223175,11.827538,14.494103,16.616726,34.631325,40.419113,19.16433
nyu515682,587731513142214757,17.7419343,0.27615211,2738,40,4,37,GALAXY,17.234232,4.620513E-3,16.408009,3.902453E-3,17.29171,0.023275,16.468094,0.02006,678.083069,182.840668,3.27737,10.317657,3.148152,4.76,28.24793545,107.8,20.778894,25.480459,30.007523,15.483582,18.792963,22.052736,16.481142,16.116148,12.124976
nyu515665,587731513142083773,17.48458547,0.3436302,2738,40,4,35,GALAXY,16.855354,4.060548E-3,15.9706,3.39343E-3,16.908695,0.012399,16.044851,0.013885,1291.56958,565.004089,4.410601,13.404399,3.039132,4.76,28.24793546,107.8,21.990948,25.338425,25.217733,13.903388,17.555326,22.091351,13.760329,10.71127,8.006595
nyu515661,587731513142083717,17.57145974,0.3448955,2738,40,4,35,GALAXY,15.810515,2.943753E-3,14.95973,2.536178E-3,15.887322,6.79417E-3,15.057138,6.828225E-3,1303.10474,1354.81506,8.334467,26.747469,3.20926,4.76,28.24793546,107.8,38.991913,50.816143,57.468441,28.415958,33.524208,39.471645,72.360893,68.63607,68.698273
nyu515646,587731513142018107,17.39646683,0.33709227,2738,40,4,34,GALAXY,16.193012,3.461979E-3,15.345563,2.949503E-3,16.332556,0.012175,15.487227,0.017528,1232.15417,1124.95959,7.363916,21.743641,2.952728,4.76,28.24793545,107.8,36.979801,40.760674,42.594906,14.394332,16.150801,20.975222,120.554764,118.683243,119.890343
nyu515645,587731513142018106,17.39034572,0.34224376,2738,40,4,34,GALAXY,16.171774,3.20598E-3,15.296213,2.787377E-3,16.295193,0.031306,15.429592,0.03007,1278.99707,1069.29248,4.925971,15.356012,3.117357,4.76,28.24793545,107.8,35.341839,39.117744,44.884224,14.711431,18.736246,23.189993,29.557478,32.903347,32.858307
nyu515608,587731513141821482,16.97361843,0.32633922,2738,40,4,31,GALAXY,15.875299,2.933494E-3,15.000452,2.533016E-3,15.97327,0.011099,15.113796,0.011072,1134.56604,1363.87549,6.658126,21.992468,3.303102,4.76,28.24793541,107.8,42.321777,51.105194,57.454933,25.598171,33.643166,38.892521,119.6548,122.42675,123.088448
nyu515500,587731513141231777,15.51839389,0.39006473,2738,40,4,22,GALAXY,16.77841,4.407387E-3,15.954562,3.602333E-3,16.884398,8.565677E-3,16.066978,7.408285E-3,1713.54468,382.192413,6.853142,21.852802,3.188727,4.76,28.24793547,107.8,23.908497,28.818022,32.58939,22.310873,28.157732,31.895241,103.248573,56.230396,75.264824
nyu515463,587731513409405105,14.98210129,0.26078336,2738,40,4,18,GALAXY,17.5123,5.809805E-3,16.620659,4.481047E-3,17.544765,0.010706,16.658964,9.505511E-3,538.167969,951.24231,5.046448,15.798685,3.130654,4.76,28.24793537,107.8,18.553743,25.247795,26.816977,14.629747,17.699249,22.225641,97.208572,92.342598,89.468155
nyu515461,587731513409405101,14.97359121,0.37418204,2738,40,4,18,GALAXY,16.441908,3.708322E-3,15.51448,2.964955E-3,16.517393,0.03401,15.585462,0.031306,1569.21313,873.467773,5.077176,16.818703,3.31261,4.76,28.24793537,107.8,36.63271,-9999,41.39423,14.313234,-9999,20.805229,122.858612,-9999,123.639091
nyu513437,587731512621465740,54.60228264,-0.01859579,2738,40,3,283,GALAXY,17.099243,4.672663E-3,16.175922,3.679946E-3,17.169142,0.01151,16.256693,0.011331,1810.80615,483.730255,3.659377,10.973997,2.998871,4.72,28.2596836,161.7,19.289104,22.852152,26.628159,14.182829,20.035345,20.866514,93.942078,107.419739,101.991829
nyu513130,587731512620220650,51.82468483,-0.07653697,2738,40,3,264,GALAXY,17.678249,8.138777E-3,16.569971,5.137879E-3,17.593142,0.099886,16.547903,0.095511,1284.19507,1092.25818,8.391404,25.060425,2.98644,4.72,28.25968369,161.7,31.975237,42.477104,37.371574,9.060184,10.453838,13.825049,177.483841,0.301667,0.554972
nyu513079,587731512620023944,51.32716207,-0.15645584,2738,40,3,261,GALAXY,16.955891,5.264732E-3,15.901427,3.760175E-3,17.184418,0.053422,16.176605,0.048892,558.034546,652.179504,6.693059,20.038347,2.9939,4.72,28.25968366,161.7,43.301609,50.464794,57.926044,9.871535,12.628139,13.002143,15.777508,13.146476,15.500652
nyu513076,587731512620023929,51.31422244,-0.04945745,2738,40,3,261,GALAXY,17.286707,6.14921E-3,16.348747,4.499947E-3,17.346664,0.011358,16.417137,8.056393E-3,1530.82227,534.436462,7.294647,20.240555,2.774714,4.72,28.25968366,161.7,20.936937,24.925444,28.515036,17.645712,22.429642,23.184082,71.42585,60.583469,55.465157
nyu513046,587731512619958392,51.11497165,-0.08636282,2738,40,3,260,GALAXY,15.443453,2.736767E-3,14.463597,2.271152E-3,15.447279,0.024808,14.543129,0.016122,1195.49121,84.177666,11.88611,41.162365,3.463064,4.72,28.2596836,161.7,70.809097,72.182976,72.67527,26.293928,31.140198,34.639084,67.447083,67.285301,68.735786
nyu513043,587731512619958356,51.25646965,-0.19294591,2738,40,3,260,GALAXY,15.800391,2.921652E-3,14.864616,2.4403E-3,15.876238,0.010164,14.971271,9.521618E-3,226.388824,1370.37061,7.241277,22.975815,3.172895,4.72,28.2596836,161.7,39.162556,45.912945,49.680847,26.672501,32.350849,35.165245,101.137573,98.451469,105.836159
nyu512998,587731512619827385,50.95883148,-0.20692905,2738,40,3,258,GALAXY,16.998898,5.663503E-3,16.031235,4.09086E-3,17.20616,0.010658,16.234566,7.619532E-3,99.262314,1386.76245,8.100732,21.86121,2.698671,4.72,28.25968367,161.7,22.562895,29.842628,31.522572,18.524099,22.690815,26.80452,145.502319,137.724197,146.26474
nyu512992,587731512619827332,50.93467387,-0.11958165,2738,40,3,258,GALAXY,17.019949,5.27699E-3,16.05979,3.860322E-3,17.273569,0.068864,16.29678,0.0297,893.155762,1167.06763,5.656675,15.520408,2.743733,4.72,28.25968367,161.7,19.95792,28.386631,33.079563,18.663813,24.538366,27.291342,97.654442,51.127914,37.469471
nyu512991,587731512619827330,50.93086816,-0.11841998,2738,40,3,258,GALAXY,15.470895,2.894746E-3,14.46909,2.303087E-3,15.569532,0.021782,14.591,0.015021,903.710022,1132.46741,13.534356,43.202293,3.192046,4.72,28.25968367,161.7,54.189022,64.131844,69.448692,36.178017,46.030819,53.678493,98.854042,93.613159,92.167435
nyu512988,587731512619827259,50.93400566,-0.01369288,2738,40,3,258,GALAXY,16.215626,3.249276E-3,15.359599,2.793218E-3,16.326744,0.012563,15.482931,0.012425,1855.76807,1160.91113,4.274501,12.698771,2.97082,4.72,28.25968367,161.7,28.285967,35.340542,39.142559,15.358903,19.046167,21.588554,8.419571,10.63592,12.98528
nyu512932,587731512619630623,50.39146198,-0.17839962,2738,40,3,255,GALAXY,16.165537,4.582319E-3,15.238757,4.582194E-3,16.136927,0.047747,15.284671,0.037776,358.039063,311.580597,16.315081,46.982666,2.879708,4.72,28.25968366,161.7,75.804993,98.726776,105.687248,16.41988,17.315945,21.867229,103.454376,103.994186,100.36235
nyu512912,587731512619565169,50.30513189,-0.11430525,2738,40,3,254,GALAXY,17.682112,6.440446E-3,16.702101,4.67149E-3,17.677145,0.051537,16.725498,0.045262,940.677063,887.582031,4.886243,16.30839,3.337613,4.72,28.25968377,161.7,19.957623,24.871916,26.824923,15.547429,21.219957,23.699968,108.430382,100.146202,120.595078
nyu512886,587731512619434064,49.94013207,-0.07720499,2738,40,3,252,GALAXY,15.521528,2.982408E-3,14.617924,2.450933E-3,15.650554,0.016326,14.787656,0.012858,1278.52832,291.598053,11.985883,34.627033,2.888985,4.72,28.25968363,161.7,55.054081,61.332867,65.355019,24.146381,26.437099,30.900097,164.392212,164.467789,162.213074
nyu512701,587731512618582236,47.97555686,-2.23893E-3,2738,40,3,239,GALAXY,16.221531,3.361028E-3,15.378789,2.834086E-3,16.384987,0.016338,15.546078,0.015556,1959.7915,123.952782,5.009027,14.935146,2.981646,4.72,28.25968361,161.7,32.152946,40.378906,43.016052,18.254118,22.854181,25.364529,5.110175,176.478607,178.145432
nyu512696,587731512618582090,48.01037896,-0.07847764,2738,40,3,239,GALAXY,14.715627,2.205797E-3,13.794563,1.922374E-3,14.838804,2.523236E-3,13.916254,1.997906E-3,1266.82166,440.575958,12.455522,40.807732,3.276276,4.72,28.25968361,161.7,53.206009,65.384239,72.445557,51.380798,64.643867,70.729858,47.788292,35.179935,134.774796
nyu512688,587731512618516658,47.95942624,-0.13601785,2738,40,3,238,GALAXY,17.185932,4.824749E-3,16.268446,3.757598E-3,17.298544,7.159621E-3,16.388618,5.534684E-3,743.649109,1338.41064,4.006567,10.582374,2.641258,4.72,28.25968366,161.7,16.269684,19.129435,20.807743,12.619992,15.841763,18.334221,45.747673,52.746853,40.707584
nyu512453,587731512617730202,46.15237299,-0.03741852,2738,40,3,226,GALAXY,15.151156,2.611345E-3,14.231756,2.226184E-3,15.217683,0.044218,14.35745,0.038127,1640.07935,1241.83142,13.582191,41.726917,3.072179,4.72,28.25968371,161.7,88.318634,96.800308,96.481018,27.506491,34.086227,39.32906,38.25642,39.837975,39.143288
nyu512329,587731512614912170,39.71042262,-0.03075803,2738,40,3,183,GALAXY,16.674809,4.242072E-3,15.781956,3.345757E-3,16.822796,0.010159,15.967852,8.070931E-3,1700.64392,1200.48108,6.15029,17.807617,2.895411,4.72,28.25968378,161.7,26.631901,37.94582,40.681404,24.760479,27.564564,28.978319,149.622238,145.365158,137.757828
nyu512300,587731512614584468,38.94179946,-0.19153149,2738,40,3,178,GALAXY,17.932446,7.724978E-3,17.104452,5.928321E-3,17.976749,0.016191,17.138506,0.011787,239.222595,1018.1189,5.131585,15.747406,3.068722,4.72,28.25968385,161.7,17.084187,21.091082,21.998602,12.650604,15.626945,16.126791,117.193626,139.994095,125.095154
nyu512299,587731512614584467,38.9363173,-0.18816939,2738,40,3,178,GALAXY,16.451569,4.096459E-3,15.47793,3.10658E-3,16.516947,9.876942E-3,15.580841,7.88004E-3,269.776306,968.277222,8.899364,28.967438,3.255001,4.72,28.25968385,161.7,32.572674,41.223804,45.488064,24.738306,33.681496,38.052284,72.835632,78.436081,88.911987
nyu512297,587731512614584434,38.88534342,-0.18941385,2738,40,3,178,GALAXY,16.893557,5.932394E-3,16.008858,5.410025E-3,16.938433,8.589257E-3,16.083374,6.334894E-3,258.486938,504.874023,7.321517,20.191,2.757762,4.72,28.25968385,161.7,22.833586,25.824915,27.377337,21.532419,25.195185,26.06953,130.167145,90.817734,15.943835
nyu512296,587731512614584329,38.843949,-0.11678751,2738,40,3,178,GALAXY,15.534421,2.693336E-3,14.717186,2.356819E-3,15.670114,5.564831E-3,14.859606,5.926142E-3,918.707336,128.485519,7.47848,23.14045,3.094272,4.72,28.25968385,161.7,44.427765,56.027618,59.687405,28.479208,35.6348,39.356667,142.263855,137.858749,145.49617
nyu512262,587731512614256793,38.23253048,-0.13124884,2738,40,3,173,GALAXY,15.43054,2.79969E-3,14.496854,2.310271E-3,15.508066,5.168346E-3,14.604633,3.086115E-3,787.190918,1374.76172,13.510245,37.305962,2.761309,4.72,28.25968388,161.7,53.890327,62.195206,66.37175,30.147751,37.201023,41.449451,26.044624,21.88818,21.810511
nyu512261,587731512614256790,38.23188621,-0.11416359,2738,40,3,173,GALAXY,17.340425,5.430978E-3,16.491404,4.135514E-3,17.399303,0.022063,16.569908,0.020274,942.532471,1368.88416,3.350901,10.022655,2.991033,4.72,28.25968388,161.7,22.920292,26.125813,29.639448,10.921243,13.344727,13.565219,3.626462,2.430392,177.186996
nyu512234,587731512614125704,37.83208298,-4.64774E-3,2738,40,3,171,GALAXY,17.450706,5.546522E-3,16.564806,4.300888E-3,17.492746,9.310487E-3,16.618824,7.944411E-3,1938.20923,456.244995,4.230225,13.104818,3.097901,4.72,28.25968383,161.7,17.781235,22.967798,24.594301,15.127288,19.254124,21.471798,40.575329,43.415077,8.64656
nyu512226,587731512614060165,37.78879612,-0.18691304,2738,40,3,170,GALAXY,16.78636,4.388285E-3,15.863234,3.397328E-3,16.87599,7.084594E-3,15.947679,5.669644E-3,281.288605,1423.90063,6.057225,19.367493,3.19742,4.72,28.25968382,161.7,22.297226,30.909042,32.946838,20.684874,25.567045,27.170429,118.520233,120.15332,121.744827
nyu512136,587731512613208216,35.75943842,-0.14367652,2738,40,3,157,GALAXY,17.668831,7.435955E-3,16.658079,4.977807E-3,17.744598,0.105578,16.768715,0.081704,674.722473,667.80365,5.350727,16.616182,3.105407,4.72,28.25968377,161.7,24.241661,26.873404,29.9083,13.699103,17.071775,16.714909,59.748871,63.690376,62.931339
nyu511979,587731512611766440,32.53270546,-0.04956034,2738,40,3,135,GALAXY,16.151876,3.775217E-3,15.340507,3.058888E-3,16.342091,6.265268E-3,15.558692,4.866193E-3,1530.70874,1274.49878,9.438429,26.867744,2.846633,4.72,28.25968359,161.7,30.691643,37.444744,43.404663,27.462276,32.379436,36.272392,88.386322,95.170052,98.596733
nyu511949,587731512611569858,32.02061743,-0.17708885,2738,40,3,132,GALAXY,17.216555,5.827547E-3,16.282993,4.618804E-3,17.310381,0.019339,16.429186,0.016766,371.463348,702.242371,6.316742,19.416328,3.073788,4.72,28.25968353,161.7,26.734474,33.799831,38.316166,14.017535,16.363621,18.206896,105.403938,107.611038,109.337357
nyu511927,587731512611438810,31.73851074,-0.08542739,2738,40,3,130,GALAXY,17.713081,6.113887E-3,16.827717,4.665053E-3,17.739576,0.010257,16.88196,7.547782E-3,1204.79285,859.31311,3.870336,11.248048,2.90622,4.72,28.25968355,161.7,15.62865,18.192905,24.901737,12.884501,14.209084,15.961329,43.964115,35.784954,31.352867
nyu511920,587731512611373213,31.63169801,-0.10508863,2738,40,3,129,GALAXY,17.234266,4.888771E-3,16.351349,3.938866E-3,17.299635,0.015916,16.42886,0.015103,1026.05933,1249.23669,3.128543,9.336784,2.984387,4.72,28.25968354,161.7,19.830948,22.83013,26.657089,11.222731,15.496295,19.259096,35.365047,38.75552,36.846516
nyu511772,587731512610324513,29.13650344,-0.17426427,2738,40,3,113,GALAXY,15.979057,3.26031E-3,15.093143,2.66438E-3,16.125916,0.043148,15.217463,0.044306,398.054718,340.09201,7.258235,23.093142,3.181647,4.72,28.25968342,161.7,32.784683,39.607891,49.873051,29.514553,35.620834,37.359974,172.454727,15.714981,15.399282
nyu511757,587731512610193562,28.88975387,-0.15229101,2738,40,3,111,GALAXY,17.273478,4.886618E-3,16.386904,3.95428E-3,17.326738,6.459755E-3,16.470373,4.630822E-3,597.909912,818.624878,3.638702,10.380416,2.85278,4.72,28.25968342,161.7,17.200872,19.34767,23.236265,13.281535,15.217533,16.931515,31.398296,21.986956,35.174942
nyu511746,587731512610127885,28.67100687,-0.14333531,2738,40,3,110,GALAXY,14.282949,1.957016E-3,13.415612,1.790919E-3,14.302984,3.319483E-3,13.458221,3.083458E-3,679.384949,190.844681,17.297726,54.206089,3.133712,4.72,28.25968341,161.7,77.876442,88.860748,93.700539,57.602222,69.125641,75.659454,47.994492,50.834015,47.372681
nyu511582,587731512608948395,26.02402486,-0.1270309,2738,40,3,92,GALAXY,18.362331,8.845378E-3,17.551657,6.428775E-3,18.432543,0.011183,17.625954,9.10051E-3,827.834595,623.607361,2.647918,7.506073,2.834708,4.72,28.25968329,161.7,9.681658,13.261315,14.078553,8.406017,10.132,10.575313,43.678528,51.030994,156.650406
nyu511574,587731512608882780,25.83858138,-0.05283914,2738,40,3,91,GALAXY,16.851368,4.684538E-3,15.920757,3.580204E-3,17.016916,0.016925,16.138277,0.012944,1502.40613,298.513916,6.003394,16.831432,2.803653,4.72,28.25968332,161.7,38.898499,44.685345,49.726402,12.27954,14.194509,16.303083,60.623798,58.78426,60.940281
nyu511548,587731512608555211,25.18792036,-0.13213203,2738,40,3,86,GALAXY,17.067778,4.902069E-3,16.171652,3.771806E-3,17.156233,7.919653E-3,16.266506,6.006136E-3,781.588928,1188.66455,5.464137,16.480865,3.016188,4.72,28.25968323,161.7,21.15266,27.436769,32.704048,17.503891,23.618784,26.483339,26.031279,34.218601,33.901367
nyu511546,587731512608555183,25.15191573,-0.04362737,2738,40,3,86,GALAXY,17.221292,5.390967E-3,16.317038,4.036081E-3,17.341162,0.013594,16.404018,0.012112,1586.31079,861.240601,5.445257,17.635115,3.238619,4.72,28.25968323,161.7,26.75028,30.757677,35.30196,13.052899,17.885061,19.718866,13.441976,12.906892,15.280025
nyu511369,587731512606458074,20.36086442,-0.10114873,2738,40,3,54,GALAXY,18.238232,7.710504E-3,17.421898,6.01752E-3,18.292175,0.01013,17.472805,7.926062E-3,1063.7428,855.884094,2.785499,7.301124,2.621118,4.72,28.25968302,161.7,10.216219,12.975732,13.859441,8.913665,11.004639,12.859508,21.84107,168.56839,33.739185
nyu511359,587731512606392512,20.2093491,-0.09637969,2738,40,3,53,GALAXY,18.527012,0.01049,17.632021,7.81151E-3,18.657244,0.018311,17.755121,0.013682,1107.06311,839.507813,3.685829,9.771727,2.651161,4.72,28.25968303,161.7,14.231784,16.500021,19.515978,6.687249,8.496051,9.440216,13.747484,16.862419,12.908293
nyu511357,587731512606392498,20.17665956,-0.0345945,2738,40,3,53,GALAXY,17.777506,6.485803E-3,16.857901,4.850759E-3,17.904774,0.021308,16.974373,0.023699,1668.76807,542.268433,3.939262,11.830494,3.003226,4.72,28.25968303,161.7,19.527411,23.602259,28.163706,8.657785,12.783711,15.446577,78.658119,85.904938,86.302963
nyu511355,587731512606392484,20.16016288,-0.08328889,2738,40,3,53,GALAXY,18.585855,0.010848,17.644213,7.496673E-3,18.670919,0.016779,17.74263,0.012548,1226.05103,392.33844,3.457856,9.608811,2.778835,4.72,28.25968303,161.7,10.949937,13.828358,16.320641,8.712392,11.478757,13.65016,127.00898,154.256256,145.080856
nyu511354,587731512606392481,20.15783536,-0.10676623,2738,40,3,53,GALAXY,18.321081,7.708245E-3,17.38014,5.713637E-3,18.342634,0.01164,17.425657,8.99681E-3,1012.5791,371.203979,2.910918,8.455771,2.904847,4.72,28.25968303,161.7,11.238554,15.464965,20.429655,10.121922,13.548996,13.562364,143.388275,96.070831,122.62529
nyu511352,587731512606392464,20.13754075,-0.06057132,2738,40,3,53,GALAXY,17.284689,5.374463E-3,16.344305,4.534399E-3,17.234514,0.029238,16.315573,0.024727,1432.58289,186.657013,6.422697,17.672962,2.751642,4.72,28.25968303,161.7,28.114124,31.655661,36.363358,9.242671,12.288929,13.574576,8.624746,8.811139,8.131457
nyu511349,587731512606392398,20.23524973,-0.1055934,2738,40,3,53,GALAXY,16.309288,3.55956E-3,15.458443,2.937003E-3,16.341078,5.606087E-3,15.525043,4.662693E-3,1023.30762,1074.9823,7.806756,24.261753,3.10779,4.72,28.25968303,161.7,29.948732,36.390797,40.235451,27.445349,31.444996,34.288029,131.838684,129.481934,139.641663
nyu511337,587731512606326944,20.09643708,-0.07895991,2738,40,3,52,GALAXY,15.308541,2.714951E-3,14.323581,2.19109E-3,15.414782,4.876369E-3,14.417777,4.357075E-3,1265.37634,1173.95972,15.37746,49.163052,3.197085,4.72,28.25968301,161.7,57.02784,75.641731,85.098381,39.381878,49.43573,55.654812,127.458847,125.306122,123.086349
nyu511334,587731512606326928,20.0553255,-0.07812624,2738,40,3,52,GALAXY,18.472527,0.010531,17.541874,7.539677E-3,18.447573,0.020183,17.544579,0.014911,1272.94312,800.184753,4.728912,14.289165,3.02166,4.72,28.25968301,161.7,12.976377,15.954207,20.277056,12.117272,15.506259,16.743917,51.237,80.588776,71.528694
nyu511328,587731512606326869,20.00678184,-0.1375761,2738,40,3,52,GALAXY,16.235224,3.396128E-3,15.372385,2.830066E-3,16.356606,0.020402,15.506963,0.018572,732.3797,358.903839,6.148757,19.158224,3.115788,4.72,28.25968301,161.7,36.455238,40.715183,45.321537,16.873745,20.583279,21.974682,22.279186,21.447214,22.748419
nyu511323,587731512606261478,19.96886025,-0.16102334,2738,40,3,51,GALAXY,17.171034,5.016188E-3,16.302488,3.898688E-3,17.211826,7.621001E-3,16.341669,5.909097E-3,519.192871,1375.1626,4.662799,14.662416,3.144552,4.72,28.25968301,161.7,20.003374,24.989384,30.650183,16.54673,20.316416,24.648281,66.958366,68.7267,64.224304
nyu511299,587731512606130333,19.66067723,-0.12014659,2738,40,3,49,GALAXY,17.377686,5.426955E-3,16.460663,4.259031E-3,17.398933,0.020226,16.501652,0.016818,890.88269,1295.06567,4.539829,14.694257,3.236742,4.72,28.25968301,161.7,21.389225,24.197361,27.012014,13.023614,17.670725,18.314482,73.016579,69.321945,87.820328
nyu511295,587731512606130307,19.64363056,-0.16036571,2738,40,3,49,GALAXY,16.712095,5.454455E-3,15.718901,3.900253E-3,16.89719,0.011541,15.991059,8.827891E-3,525.224426,1140.10376,10.128288,30.027704,2.964736,4.72,28.25968301,161.7,31.298674,37.593395,42.826916,21.101257,27.480347,29.088285,65.198288,61.511414,62.289379
nyu511294,587731512606130306,19.6371401,-0.16011281,2738,40,3,49,GALAXY,17.518038,5.78195E-3,16.673588,4.531954E-3,17.576803,9.369827E-3,16.754721,7.060908E-3,527.526855,1081.08911,4.577294,12.515697,2.7343,4.72,28.25968301,161.7,17.194902,18.432259,19.749453,12.841973,15.200873,16.087894,146.672028,160.539688,161.341522
nyu511291,587731512606130295,19.61221523,-0.18522113,2738,40,3,49,GALAXY,17.170839,5.851639E-3,16.210793,4.235753E-3,17.351257,0.013598,16.436733,9.641214E-3,299.307861,854.476685,6.778787,19.173618,2.828473,4.72,28.25968301,161.7,27.572987,33.590714,38.99493,13.264546,16.58597,18.281,22.849207,25.266075,21.862776
nyu511255,587731512605868288,19.0532981,-0.107882,2738,40,3,45,GALAXY,15.717762,2.926475E-3,14.814171,2.425774E-3,15.836309,4.745754E-3,14.939419,4.217942E-3,1002.63458,1217.23108,9.016195,28.698151,3.182956,4.72,28.25968298,161.7,37.413784,46.03344,55.026196,31.265928,43.504974,49.720284,58.32159,31.731726,30.857569
nyu511253,587731512605868258,19.02334156,-0.01491088,2738,40,3,45,GALAXY,15.371169,3.078737E-3,14.472072,2.535178E-3,15.606654,0.016081,14.731908,0.014888,1847.87036,944.824829,14.700216,39.656788,2.697701,4.72,28.25968298,161.7,74.188812,87.166458,88.991188,20.702988,24.298983,28.239084,70.080093,69.695877,69.095169
nyu511226,587731512605737151,18.72758165,-0.03719922,2738,40,3,43,GALAXY,17.286823,5.219529E-3,16.46208,4.168427E-3,17.396221,0.025853,16.566317,0.027072,1645.44263,978.156494,4.506783,14.008192,3.108247,4.72,28.25968294,161.7,23.108614,28.244703,33.524475,10.560754,13.315482,14.508204,125.575752,126.823013,126.986641
nyu511203,587731512605605983,18.42428029,-0.10272981,2738,40,3,41,GALAXY,14.423871,2.202219E-3,13.614724,1.972024E-3,14.560109,4.136225E-3,13.761745,4.601317E-3,1049.73364,942.9552,19.048676,50.209263,2.63584,4.72,28.25968292,161.7,82.920197,91.470238,96.004021,39.660141,45.589874,51.306023,103.437653,102.616096,103.389236
nyu511179,587731512605409492,18.01956527,-0.072851,2738,40,3,38,GALAXY,18.181828,7.100662E-3,17.266539,5.280586E-3,18.25758,0.015645,17.347179,0.012721,1321.14124,1346.32947,2.458065,6.920264,2.81533,4.72,28.25968298,161.7,14.274644,17.037491,19.069157,7.345917,7.812919,8.855575,58.696468,59.451645,62.79554
nyu511178,587731512605409491,18.01388174,-0.06768931,2738,40,3,38,GALAXY,15.436318,2.840562E-3,14.552431,2.366357E-3,15.58593,4.006356E-3,14.716131,3.038028E-3,1368.06421,1294.64417,12.810417,33.405945,2.607717,4.72,28.25968298,161.7,45.042263,50.787247,55.363407,31.805962,38.30909,42.872765,148.220978,145.629517,143.767288
nyu511170,587731512605409381,18.02216601,-0.16115788,2738,40,3,38,GALAXY,16.479326,3.574876E-3,15.598311,3.024852E-3,16.514465,0.020478,15.648247,0.019754,518.251099,1370.07422,4.88232,15.980922,3.273222,4.72,28.25968298,161.7,30.279047,37.946171,39.077866,15.505401,18.318275,22.992826,116.477753,117.081627,111.061363
nyu511163,587731512605343972,17.86541094,-0.0393536,2738,40,3,37,GALAXY,17.464184,5.955068E-3,16.558754,4.714473E-3,17.593346,7.992949E-3,16.673235,5.64976E-3,1625.50757,1305.60425,4.060724,11.000228,2.708933,4.72,28.25968305,161.7,15.150983,18.700335,19.620068,12.121426,14.79723,16.531578,6.31179,21.031605,174.356949
nyu511162,587731512605343964,17.85794994,-0.07458322,2738,40,3,37,GALAXY,17.919298,0.011677,16.824167,7.253061E-3,18.047382,0.024057,17.126144,0.015962,1305.21277,1237.79907,8.03671,22.830864,2.840822,4.72,28.25968305,161.7,21.279888,25.162741,28.957529,13.021904,16.869701,19.007172,88.906868,95.855438,95.071121
nyu511027,587731512604622918,16.105314,-0.18742356,2738,40,3,26,GALAXY,15.186125,2.653369E-3,14.300533,2.212439E-3,15.334224,0.012978,14.463552,0.012018,279.492645,275.293549,13.968673,45.458179,3.254295,4.72,28.25968288,161.7,64.873116,80.225739,87.093498,35.396313,45.204124,50.94923,12.275891,12.032765,10.846282
nyu510946,587731512604229738,15.18933218,-0.0874052,2738,40,3,20,GALAXY,17.413153,6.000772E-3,16.48126,4.493299E-3,17.457802,0.014044,16.538347,0.012469,1188.29993,113.340378,6.47947,20.945499,3.232594,4.72,28.25968298,161.7,22.877874,29.422628,35.396282,14.608615,19.792908,20.832794,142.477127,140.121536,142.367416
nyu509007,587731512085774499,57.33262427,-0.50723993,2738,40,2,301,GALAXY,16.621288,4.544161E-3,15.568895,3.262528E-3,16.779188,9.154316E-3,15.741508,7.610346E-3,1182.15369,806.124329,8.222101,24.208515,2.944322,4.6,28.25762217,161.7,34.356991,41.128197,44.879276,15.687569,20.304623,25.878094,171.305588,170.814377,171.07196
nyu508941,587731512353882251,56.6079849,-0.5991725,2738,40,2,296,GALAXY,17.347502,8.995064E-3,16.23041,5.634668E-3,17.54697,0.108031,16.584011,0.038302,346.639587,1023.85291,9.348624,29.537693,3.159577,4.6,28.25762219,161.7,38.358589,47.556614,51.672199,10.202374,13.539852,15.626553,76.494858,77.225044,76.392937
nyu508904,587731512085315752,56.32996147,-0.50070791,2738,40,2,294,GALAXY,16.455013,4.024351E-3,15.498442,3.088826E-3,16.544405,0.038915,15.603371,0.036242,1241.77783,1218.3324,8.054856,25.122952,3.118982,4.6,28.25762218,161.7,38.293606,45.588844,52.572987,17.355333,23.07839,27.892139,87.420013,86.745392,87.96106
nyu508900,587731512085250200,56.13985919,-0.59626801,2738,40,2,293,GALAXY,15.791247,3.050046E-3,14.883374,2.509748E-3,15.951265,4.84824E-3,15.072434,3.911785E-3,373.239746,851.588501,7.324318,21.276115,2.904859,4.6,28.25762216,161.7,32.130806,39.236027,44.209377,28.625879,33.65752,39.092468,88.067375,74.404785,91.000092
nyu508740,587731512084398249,54.23461143,-0.60280753,2738,40,2,280,GALAXY,16.721296,4.08902E-3,15.789627,3.217919E-3,16.800959,6.922191E-3,15.880518,5.663281E-3,313.827637,1224.07751,4.867863,14.902508,3.061407,4.6,28.25762219,161.7,22.912727,30.387434,33.336472,18.566395,23.097603,26.076653,12.979501,17.264729,5.733929
nyu508728,587731512084332702,54.03242523,-0.59641922,2738,40,2,279,GALAXY,15.731038,2.950122E-3,14.800781,2.464212E-3,15.859152,0.029249,14.954602,0.026221,371.926056,747.104553,6.909913,21.217281,3.070557,4.6,28.2576222,161.7,44.315071,51.950668,52.810497,19.626974,23.029835,26.023838,94.543747,95.165031,99.001007
nyu508678,587731512084070563,53.43363878,-0.52727837,2738,40,2,275,GALAXY,15.870872,3.073288E-3,14.934357,2.488262E-3,16.013514,0.018822,15.054544,0.017435,1000.35083,747.37915,6.222307,19.835485,3.187803,4.6,28.25762228,161.7,39.122486,47.001877,61.148682,25.860683,35.076057,40.070961,127.695229,130.530334,126.238579
nyu508445,587731512083218623,51.53996408,-0.57175893,2738,40,2,262,GALAXY,16.898779,4.976503E-3,15.922705,3.57878E-3,17.037628,0.029443,16.068748,0.030247,596.247742,1225.13269,4.671677,14.652787,3.136516,4.6,28.25762229,161.7,27.76016,35.25713,37.638733,13.228159,19.884718,22.474707,98.07003,101.638832,100.044571
nyu508440,587731512083218590,51.47307282,-0.58008547,2738,40,2,262,GALAXY,16.502453,3.78614E-3,15.531115,2.974249E-3,16.648096,0.016566,15.694015,0.015928,520.643188,617.066162,4.921695,15.109353,3.069949,4.6,28.25762229,161.7,28.11578,35.60667,39.26804,15.461864,19.111237,22.767706,91.11142,92.782021,88.949417
nyu508439,587731512083218565,51.43567531,-0.50853412,2738,40,2,262,GALAXY,16.412222,3.899386E-3,15.427839,3.000219E-3,16.522081,0.016757,15.565905,0.014733,1171.07922,276.920044,7.294932,23.061172,3.16126,4.6,28.25762229,161.7,34.482838,39.567348,47.193203,19.360115,25.756872,30.202503,26.401867,24.571493,23.479326
nyu508437,587731512083218498,51.52570992,-0.61574624,2738,40,2,262,GALAXY,14.939878,2.493542E-3,13.943887,2.049496E-3,15.134092,7.890232E-3,14.139646,7.721303E-3,196.538696,1095.64539,14.885504,46.406609,3.117571,4.6,28.25762229,161.7,67.432724,86.330368,112.063057,39.013481,53.864918,78.343552,127.030296,128.786911,130.047653
nyu508425,587731512083153058,51.36188116,-0.42671223,2738,40,2,261,GALAXY,16.33967,4.239289E-3,15.411272,3.234232E-3,16.490355,7.755585E-3,15.584278,5.5588E-3,1914.82153,966.900024,10.924084,28.752062,2.631988,4.6,28.25762228,161.7,30.742884,37.484722,40.494247,25.965628,31.362911,36.557678,167.655945,168.097672,162.663147
nyu508414,587731512083087505,51.15889707,-0.42201461,2738,40,2,260,GALAXY,15.907274,3.423853E-3,14.944715,2.665021E-3,16.052967,6.02178E-3,15.101766,4.54156E-3,1957.69714,482.569427,11.062333,34.654148,3.132626,4.6,28.25762228,161.7,37.168777,49.311638,55.243195,31.678856,41.183411,49.322868,159.913406,158.746964,162.296494
nyu508404,587731512083021972,51.07675229,-0.46075322,2738,40,2,259,GALAXY,17.194883,5.643414E-3,16.252487,4.098694E-3,17.277113,8.923925E-3,16.350597,7.382025E-3,1605.57166,1096.86926,5.167988,15.528413,3.004731,4.6,28.25762229,161.7,19.905563,24.422409,27.990845,15.815704,20.963064,23.353207,137.497147,156.036102,147.588013
nyu508366,587731512082890888,50.70167913,-0.6201837,2738,40,2,257,GALAXY,16.605524,4.326646E-3,15.732348,3.311761E-3,16.710447,0.017977,15.835568,0.018706,156.065338,409.40329,5.628141,17.355309,3.083666,4.6,28.25762235,161.7,30.810921,35.661541,38.193462,12.605564,15.32668,16.482861,136.812302,139.123199,142.102463
nyu507935,587731512081121424,46.67136305,-0.55508337,2738,40,2,230,GALAXY,16.10257,3.266208E-3,15.216686,2.700502E-3,16.195698,4.134704E-3,15.316364,3.45287E-3,747.40741,515.715637,6.331363,17.954102,2.835741,4.6,28.25762249,161.7,27.313519,32.102863,34.24765,19.126179,21.940916,25.732807,168.257782,171.020935,174.485855
nyu507932,587731512081121396,46.63646459,-0.56077896,2738,40,2,230,GALAXY,16.042528,3.320422E-3,15.104563,2.649083E-3,16.078518,9.649744E-3,15.157007,9.376965E-3,695.629333,198.424728,8.418467,28.752792,3.415443,4.6,28.25762249,161.7,36.589745,48.50354,55.558102,29.400711,37.426792,41.86145,163.215714,165.557098,158.457565
nyu507927,587731512081121308,46.66025037,-0.50999206,2738,40,2,230,GALAXY,15.456046,2.699086E-3,14.538049,2.276674E-3,15.5718,4.223115E-3,14.68116,3.546531E-3,1157.302,414.557617,8.899305,26.409136,2.96755,4.6,28.25762249,161.7,41.303452,50.947529,58.410046,32.686687,40.465759,41.464291,13.115339,8.699933,25.306126
nyu507624,587731512079220900,42.3912998,-0.58851768,2738,40,2,201,GALAXY,16.049749,3.255123E-3,15.161665,2.669313E-3,16.123547,0.010112,15.253311,8.923164E-3,444.08963,1074.8833,7.21013,23.522516,3.262426,4.6,28.25762235,161.7,37.442394,46.110313,49.615742,23.57979,28.316135,32.669998,167.387787,169.778854,166.505386
nyu507623,587731512079220882,42.37082548,-0.56732368,2738,40,2,201,GALAXY,15.807439,3.252582E-3,14.887325,2.614244E-3,15.914808,6.889449E-3,15.050561,4.818337E-3,636.711914,888.708618,11.06804,30.163992,2.725324,4.6,28.25762235,161.7,39.794403,47.648956,52.728306,28.023958,33.006031,36.488998,29.8328,33.729774,35.374008
nyu507621,587731512079220783,42.41957104,-0.56590941,2738,40,2,201,GALAXY,15.426578,2.715856E-3,14.540277,2.28889E-3,15.501264,6.061532E-3,14.65119,5.603464E-3,649.575623,1331.83215,10.980425,33.49575,3.050497,4.6,28.25762235,161.7,45.055981,53.11871,59.082714,35.301357,45.794994,46.368958,94.025406,100.384079,120.557953
nyu507608,587731512079155258,42.2169125,-0.52405171,2738,40,2,200,GALAXY,15.646811,2.758918E-3,14.815252,2.385243E-3,15.819175,2.785802E-3,14.969522,2.211021E-3,1030.05664,850.433167,5.312508,15.377386,2.894563,4.6,28.25762234,161.7,35.231873,45.830288,54.18988,29.864695,40.996754,50.723202,91.966568,136.783386,112.128822
nyu507560,587731512079024134,41.84044843,-0.46249671,2738,40,2,198,GALAXY,16.357069,4.384517E-3,15.406727,3.325466E-3,16.548683,0.014489,15.647429,0.011959,1589.51111,149.612518,10.090915,28.07704,2.782408,4.6,28.25762236,161.7,47.621677,54.76128,53.681343,13.159463,14.944316,20.525419,138.064926,138.795456,138.623672
nyu507545,587731512078958773,41.76825174,-0.45687715,2738,40,2,197,GALAXY,16.42943,3.951692E-3,15.619179,3.17941E-3,16.671108,9.982553E-3,15.816799,9.344026E-3,1640.6394,854.25,5.922004,16.273611,2.74799,4.6,28.25762237,161.7,29.995846,34.864651,39.160057,13.738488,16.80312,17.705004,133.942627,133.257507,133.978271
nyu507533,587731512078958686,41.6991661,-0.57078948,2738,40,2,197,GALAXY,15.078728,2.706333E-3,14.201347,2.220925E-3,15.220776,4.586105E-3,14.339118,3.316103E-3,605.220459,226.55661,19.08201,56.372372,2.954216,4.6,28.25762237,161.7,55.795551,71.279266,80.034332,48.516129,61.832268,70.401634,81.485886,77.414719,75.064514
nyu507519,587731512078893255,41.65335513,-0.58530633,2738,40,2,196,GALAXY,16.61643,4.070103E-3,15.762897,3.253761E-3,16.717085,6.267033E-3,15.876213,5.060657E-3,473.270935,1171.02917,5.85951,17.915543,3.057516,4.6,28.25762236,161.7,23.51239,29.671021,31.706659,21.749552,25.827772,28.469229,83.991783,105.573563,107.761337
nyu507490,587731512078827712,41.49318031,-0.44918908,2738,40,2,195,GALAXY,15.428847,2.813931E-3,14.584041,2.352416E-3,15.592246,3.833901E-3,14.740091,3.369761E-3,1710.62073,1075.37732,11.00771,29.620623,2.690898,4.6,28.25762237,161.7,43.767494,56.070801,59.40659,28.290188,33.746342,38.075951,76.189201,80.330048,84.450439
nyu507361,587731512077779061,39.12328524,-0.53965697,2738,40,2,179,GALAXY,17.520296,6.662986E-3,16.582527,4.804797E-3,17.692371,0.030204,16.762106,0.027373,888.225647,1306.26318,5.424458,15.898036,2.930806,4.6,28.25762251,161.7,25.042894,34.309933,35.121632,9.381507,11.897417,15.079369,81.348404,80.915497,77.751122
nyu507343,587731512077582445,38.5751033,-0.57714333,2738,40,2,176,GALAXY,18.313446,8.953319E-3,17.458532,6.504483E-3,18.378969,0.013047,17.539528,0.010009,547.550781,405.832703,3.22052,8.713308,2.705559,4.6,28.25762253,161.7,11.358305,15.194608,14.911973,9.343234,10.311275,12.735222,39.637512,38.071434,34.687286
nyu507323,587731512077385843,38.13370371,-0.45756136,2738,40,2,173,GALAXY,17.226974,7.612706E-3,16.356264,5.640076E-3,17.535772,0.018393,16.647348,0.017177,1634.4906,475.600433,9.65561,28.027126,2.902678,4.6,28.25762255,161.7,34.172081,44.229786,46.490112,11.659858,14.533164,15.450296,109.385933,108.5355,110.745918
nyu507322,587731512077385839,38.12423356,-0.42275208,2738,40,2,173,GALAXY,17.733927,7.059638E-3,16.786448,5.038047E-3,17.765478,0.012097,16.827463,8.361371E-3,1950.81384,389.418732,4.882358,13.349645,2.734262,4.6,28.25762255,161.7,15.55522,19.140032,19.623808,13.649484,16.555256,17.066671,177.409729,160.295853,179.752151
nyu507320,587731512077385809,38.10016233,-0.55204213,2738,40,2,173,GALAXY,16.528147,4.08512E-3,15.642465,3.207535E-3,16.590364,9.173397E-3,15.716867,8.436893E-3,775.65332,170.927643,7.540731,23.721527,3.145786,4.6,28.25762255,161.7,28.869307,36.561485,40.728161,23.55492,30.776049,32.95882,0.907184,2.689607,174.653244
nyu507317,587731512077320320,38.0828124,-0.54901342,2738,40,2,172,GALAXY,17.240416,6.565987E-3,16.346769,5.96389E-3,17.388176,0.01024,16.506838,8.303419E-3,803.209229,1374.16187,5.35831,14.660744,2.736076,4.6,28.25762256,161.7,20.407412,24.733902,25.70722,13.745415,17.116457,19.504116,56.655109,56.017628,62.137627
nyu507272,587731512076992616,37.19244964,-0.57152743,2738,40,2,167,GALAXY,17.733414,6.258679E-3,16.928349,4.858613E-3,17.816055,0.011046,16.993048,9.553479E-3,598.923218,84.215576,3.154839,8.558356,2.712771,4.6,28.25762258,161.7,16.922388,21.769581,25.836189,8.359134,9.654173,9.767195,55.696846,50.327011,47.06995
nyu507216,587731512076533903,36.27275456,-0.60406433,2738,40,2,160,GALAXY,15.790444,3.58638E-3,14.954669,2.845185E-3,15.953117,8.068867E-3,15.150432,5.425629E-3,303.13446,1250.80896,13.671542,39.567093,2.894121,4.6,28.25762254,161.7,51.216782,59.565681,62.609657,28.715508,34.214478,37.408928,24.881823,22.887447,22.63933
nyu507214,587731512076533843,36.16389369,-0.56009998,2738,40,2,160,GALAXY,17.53558,6.302123E-3,16.68181,4.910378E-3,17.641657,0.020717,16.758928,0.021914,702.739136,260.932343,4.213792,13.41467,3.183515,4.6,28.25762254,161.7,21.752871,23.220766,24.280777,9.9359,12.098597,12.953506,62.827515,64.213669,65.040733
nyu507117,587731512075747389,34.39917605,-0.49359352,2738,40,2,148,GALAXY,15.063912,2.457866E-3,14.163489,2.094366E-3,15.198912,3.436328E-3,14.320919,2.85639E-3,1307.34094,549.931519,11.841008,36.825768,3.110019,4.6,28.25762242,161.7,48.277767,61.092442,69.551086,43.132191,55.127609,62.39241,21.922567,40.775127,42.790623
nyu507092,587731512075419868,33.72478193,-0.47699545,2738,40,2,143,GALAXY,17.728004,7.436326E-3,16.821487,5.190663E-3,17.836008,0.011486,16.97596,9.923157E-3,1458.30872,1223.56934,4.393121,12.545794,2.855781,4.6,28.25762242,161.7,15.734732,19.992098,20.425386,11.58263,15.23272,18.876802,101.122681,106.336884,107.018509
nyu507078,587731512075288740,33.31866552,-0.43223797,2738,40,2,141,GALAXY,17.882141,6.992792E-3,16.889294,5.002993E-3,17.990891,0.015023,17.005451,0.01579,1865.078,253.129333,3.390873,9.624831,2.838452,4.6,28.2576224,161.7,15.968397,18.891201,22.234489,7.683008,9.850668,10.972413,42.623001,40.931519,44.173851
nyu507053,587731512074961058,32.67082854,-0.61467505,2738,40,2,136,GALAXY,18.007708,8.197055E-3,17.11487,6.315546E-3,18.074463,0.025797,17.205357,0.024007,207.064621,1168.79138,4.440791,13.656591,3.075261,4.6,28.25762233,107.8,22.388479,24.564257,28.462526,7.799093,9.356104,9.096313,90.723907,91.00721,88.8778
nyu506985,587731512074436745,31.46196019,-0.60623036,2738,40,2,128,GALAXY,18.083618,7.55471E-3,17.203585,5.626719E-3,18.137486,0.020362,17.26865,0.017929,284.154938,1066.53381,3.500007,11.118528,3.176716,4.6,28.25762223,107.8,15.823895,22.101734,27.478174,11.301904,16.200186,16.733082,93.678108,77.047478,91.77549
nyu506981,587731512074436691,31.35411307,-0.55552759,2738,40,2,128,GALAXY,16.55617,3.863923E-3,15.714674,3.176845E-3,16.62956,0.026763,15.79391,0.025505,745.111328,85.933113,5.432623,17.9363,3.301591,4.6,28.25762223,107.8,28.083397,36.085865,41.544056,20.652279,26.014191,28.486382,7.284187,177.348984,177.014511
nyu506979,587731512074436669,31.46628902,-0.54237539,2738,40,2,128,GALAXY,16.570387,4.35951E-3,15.675023,3.349548E-3,16.674234,0.398292,15.827711,0.302358,864.525085,1105.74438,7.041546,19.283468,2.738528,4.6,28.25762223,107.8,31.550247,29.406145,35.957821,14.104037,18.224083,17.635948,154.016403,155.484192,160.804871
nyu506976,587731512074371266,31.34621331,-0.45930729,2738,40,2,127,GALAXY,18.224184,8.295055E-3,17.294615,6.082136E-3,18.278187,0.012813,17.356586,8.912564E-3,1619.76001,1374.88293,3.262511,9.346548,2.864833,4.6,28.2576222,107.8,12.361668,15.487484,18.135357,9.780392,11.488004,12.59174,21.770084,28.171431,23.308367
nyu506815,587731512073256988,28.72130565,-0.59706143,2738,40,2,110,GALAXY,15.139451,2.424337E-3,14.361151,2.178083E-3,15.256749,2.771746E-3,14.474546,2.411384E-3,368.389709,647.73175,8.34146,24.417749,2.927275,4.6,28.25762207,107.8,38.729168,46.538185,51.934559,34.935757,42.274853,49.729576,89.081459,86.639488,78.041664
nyu506691,587731512072274082,26.53024548,-0.61755936,2738,40,2,95,GALAXY,16.411993,3.795975E-3,15.451496,2.97536E-3,16.559643,0.019207,15.592962,0.017052,182.333572,1143.04675,5.932315,17.477707,2.946187,4.6,28.25762212,107.8,30.117599,36.834145,40.709572,15.274378,20.530798,22.942669,127.245728,128.82634,124.121132
nyu506687,587731512072208560,26.38185088,-0.51916918,2738,40,2,94,GALAXY,17.735973,6.804782E-3,16.835398,5.010522E-3,17.847212,0.010422,16.966936,8.245605E-3,1076.58203,1154.62476,4.219563,12.488128,2.959579,4.6,28.25762212,107.8,18.07695,22.696377,23.096649,11.207875,12.985798,14.547923,88.375862,89.728806,101.31218
nyu506662,587731512071880913,25.58516315,-0.57601299,2738,40,2,89,GALAXY,17.148365,5.013255E-3,16.249561,3.905111E-3,17.242086,0.014789,16.349073,0.012044,559.78241,716.516785,4.16205,12.135414,2.91573,4.6,28.25762208,107.8,19.780737,24.007927,30.616306,11.963681,14.469226,16.216238,154.133743,149.385117,151.457932
nyu506605,587731512071356538,24.43053261,-0.48619606,2738,40,2,81,GALAXY,16.564772,3.801691E-3,15.749115,3.299085E-3,16.629648,0.03353,15.807003,0.031435,1376.80713,1106.96912,3.82486,12.380962,3.236971,4.6,28.25762195,107.8,26.074833,30.47797,34.538982,12.912747,16.578144,20.796953,179.420303,173.636765,175.830536
nyu506600,587731512071291061,24.29567402,-0.50707829,2738,40,2,80,GALAXY,17.011847,5.172704E-3,16.200233,4.048593E-3,17.175425,9.631574E-3,16.33009,5.956327E-3,1186.90063,1242.05054,6.537143,17.610973,2.693986,4.6,28.25762194,107.8,21.978031,25.688139,25.049723,16.260286,19.811468,21.659479,92.579483,100.024406,111.659416
nyu506599,587731512071291060,24.30364017,-0.50430606,2738,40,2,80,GALAXY,15.389332,2.912193E-3,14.509573,2.376128E-3,15.564816,8.056929E-3,14.661477,6.385728E-3,1212.099,1314.46362,14.888,46.248436,3.106424,4.6,28.25762194,107.8,61.486317,80.661537,89.544395,30.314985,40.059502,46.616611,25.483639,25.881397,27.362387
nyu506586,587731512071159954,23.9171745,-0.46642831,2738,40,2,78,GALAXY,16.443539,4.009142E-3,15.545209,3.184832E-3,16.433044,0.030315,15.545706,0.022671,1556.41431,522.742249,9.756869,27.176655,2.785387,4.6,28.25762192,107.8,52.302334,57.906048,59.196651,12.469068,15.567908,17.515383,153.160431,154.154083,154.752029
nyu506577,587731512071094363,23.7516442,-0.45124543,2738,40,2,77,GALAXY,16.545013,5.510893E-3,15.559998,3.916757E-3,16.837862,0.037616,15.886005,0.029907,1694.33374,378.665985,10.483429,31.518711,3.006527,4.6,28.25762191,107.8,40.204491,51.424656,59.5816,15.804675,21.239096,28.431723,104.460159,106.03624,101.127724
nyu506572,587731512071028897,23.67432462,-0.6042218,2738,40,2,76,GALAXY,17.216461,5.045812E-3,16.288727,3.836492E-3,17.290449,0.017361,16.347437,0.017099,303.812988,1037.0387,4.408957,14.096556,3.197253,4.6,28.25762192,107.8,20.383432,25.600927,28.999949,14.84202,21.472845,24.135611,50.723942,42.696877,38.58622
nyu506558,587731512070963337,23.50388758,-0.53682182,2738,40,2,75,GALAXY,17.436075,5.315157E-3,16.684141,0.01749,17.489391,0.011933,16.639894,0.01134,916.460571,848.424438,3.994188,10.936934,2.738212,4.6,28.2576219,107.8,20.097166,24.881237,27.80419,9.037161,11.021356,11.473003,16.539448,19.103498,21.655052
nyu506553,587731512070897765,23.35000883,-0.55264517,2738,40,2,74,GALAXY,17.027098,4.851216E-3,16.063528,3.583056E-3,17.140553,8.612913E-3,16.165583,7.315528E-3,772.734863,810.612488,5.251247,16.748512,3.189435,4.6,28.25762187,107.8,21.320217,27.794792,30.865318,17.81809,25.259563,28.098736,76.411865,61.695721,30.84366
nyu506527,587731512070701178,22.84093224,-0.59537675,2738,40,2,71,GALAXY,16.214396,3.556783E-3,15.342195,2.859647E-3,16.291428,5.362545E-3,15.422678,4.013895E-3,384.154694,265.218079,8.305626,25.569355,3.078558,4.6,28.25762187,107.8,29.141747,35.448975,40.280331,27.230164,32.734489,36.807896,0.098726,137.705856,151.821838
nyu506503,587731512070438934,22.2481833,-0.56194176,2738,40,2,67,GALAXY,13.665011,1.791939E-3,12.865446,1.681286E-3,13.694709,0.012681,12.897706,0.012785,688.661499,320.539032,18.632721,61.754326,3.314295,4.6,28.25762176,107.8,110.187103,132.972351,141.267609,53.469021,64.295013,70.338058,62.736835,64.333221,64.361259
nyu506469,587731512070045882,21.45566526,-0.44837697,2738,40,2,61,GALAXY,18.302885,9.105393E-3,17.590883,0.023278,18.30599,0.015735,17.444948,0.012991,1720.98975,1281.21069,3.764563,9.869617,2.621716,4.6,28.25762175,107.8,13.664891,14.719286,14.805808,7.694835,10.59842,11.473208,12.868679,5.833898,7.442017
nyu506455,587731512069914780,21.14410244,-0.43296907,2738,40,2,59,GALAXY,17.529694,5.613807E-3,16.516405,4.176965E-3,17.57011,0.024568,16.599758,0.025278,1860.5968,1170.59314,3.975443,12.270062,3.086464,4.6,28.2576218,107.8,19.596415,22.661264,27.215406,9.809047,14.227789,16.393326,135.284866,126.82058,124.867821
nyu506452,587731512069914728,21.05248291,-0.49041604,2738,40,2,59,GALAXY,17.236904,5.331189E-3,16.363699,4.148713E-3,17.37796,0.013649,16.529285,0.013623,1338.44958,337.703064,4.840185,14.761673,3.049816,4.6,28.2576218,107.8,23.035635,27.128304,29.904797,14.349275,19.128141,21.158707,46.418068,49.456821,43.642406
nyu506451,587731512069914726,21.04310472,-0.48972544,2738,40,2,59,GALAXY,18.329287,0.011461,17.43248,7.614722E-3,18.415058,0.023059,17.520761,0.017983,1344.72693,252.431473,5.20474,16.046896,3.083132,4.6,28.2576218,107.8,13.414465,18.316278,18.664701,10.345485,15.157232,18.128571,16.595398,164.121017,118.397118
nyu506449,587731512069914711,21.02327918,-0.45826417,2738,40,2,59,GALAXY,18.11689,9.812806E-3,17.216841,0.025372,18.129063,0.026682,17.290751,0.021545,1630.70215,72.087509,6.230833,18.743273,3.008149,4.6,28.2576218,107.8,22.561699,28.486385,28.218689,10.108812,12.187722,16.33074,166.701828,162.934982,159.935471
nyu506435,587731512069783648,20.8719951,-0.53254662,2738,40,2,57,GALAXY,15.303596,2.539349E-3,14.447186,2.190533E-3,15.35504,3.126134E-3,14.505182,2.525895E-3,955.379211,1418.83203,9.902989,33.279716,3.360573,4.6,28.25762181,107.8,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999
nyu506428,587731512069718066,20.64754029,-0.57010815,2738,40,2,56,GALAXY,15.132101,2.414487E-3,14.245648,2.087833E-3,15.18755,0.026784,14.327513,0.028804,613.985779,739.411377,10.174071,36.101082,3.548342,4.6,28.25762179,161.7,52.399601,60.29528,64.258591,44.30344,50.383659,54.911331,141.013245,146.102859,144.001266
nyu506413,587731512069587129,20.32865113,-0.62069259,2738,40,2,54,GALAXY,17.385382,5.455502E-3,16.535692,4.263703E-3,17.464462,8.227948E-3,16.631058,6.100328E-3,154.462601,562.559692,4.488455,12.643985,2.817002,4.6,28.25762177,107.8,15.256259,18.98988,23.825607,15.080214,17.609201,19.022507,67.135468,123.056038,101.339607
nyu506412,587731512069587006,20.32336835,-0.59763944,2738,40,2,54,GALAXY,15.274922,2.544947E-3,14.369102,2.171027E-3,15.383804,0.01102,14.499734,0.010887,363.935059,514.492554,9.448022,30.945213,3.275311,4.6,28.25762177,107.8,43.837555,54.215969,57.615257,38.112537,47.172668,53.009567,137.386215,128.862823,129.956207
nyu506344,587731512069128362,19.35751886,-0.59099776,2738,40,2,47,GALAXY,16.611778,4.33685E-3,15.618838,3.192097E-3,16.70134,7.890586E-3,15.726626,5.831211E-3,424.447815,1260.2865,7.844837,24.424606,3.113463,4.6,28.25762174,107.8,28.42288,37.358742,42.34333,23.572794,30.206121,35.848091,164.346146,142.969482,135.97084
nyu506237,587731512068276423,17.35503618,-0.60871162,2738,40,2,34,GALAXY,17.319056,5.138247E-3,16.424913,3.956843E-3,17.430801,0.010004,16.548519,7.920413E-3,263.379089,748.44458,3.71132,10.465004,2.819752,4.6,28.25762177,107.8,20.673475,24.683819,28.193285,10.407977,12.228034,13.105236,161.180374,155.213013,159.918167
nyu506223,587731512068210869,17.22095076,-0.42325591,2738,40,2,33,GALAXY,17.455847,6.132264E-3,16.394329,4.345439E-3,17.625603,0.029031,16.564922,0.027381,1949.11523,889.997681,4.308371,12.979806,3.012695,4.6,28.25762175,107.8,27.240425,31.889643,36.270657,9.317641,11.704883,11.573687,68.910355,71.070236,71.94622
nyu506219,587731512068210807,17.15862053,-0.50184827,2738,40,2,33,GALAXY,16.684853,4.464316E-3,15.770326,3.415147E-3,16.833942,0.011371,15.933809,0.011278,1234.80408,323.548492,7.00277,21.480347,3.067407,4.6,28.25762175,107.8,26.447815,32.704407,35.565395,19.974697,27.274954,30.39781,77.884407,87.919518,92.761612
nyu506180,587731512068014123,16.78817186,-0.62173854,2738,40,2,30,GALAXY,14.520294,2.129556E-3,13.659141,1.896796E-3,14.520522,2.720045E-3,13.68515,2.011579E-3,145.083527,1038.90857,21.117903,63.973007,3.029326,4.6,28.25762172,107.8,76.050346,95.81131,92.900452,61.955021,73.473557,76.028481,93.660217,93.30217,89.930611
nyu506169,587731512067948723,16.56789613,-0.61759034,2738,40,2,29,GALAXY,17.902403,9.563681E-3,16.880337,7.791136E-3,17.79249,0.028419,16.810545,0.026724,182.754578,397.192017,7.336751,21.35412,2.910569,4.6,28.25762169,107.8,28.002373,35.321663,37.307934,9.975322,11.858967,14.411656,14.423203,14.7343,8.292936
nyu506153,587731512067883115,16.4106457,-0.61494266,2738,40,2,28,GALAXY,17.470894,6.286564E-3,16.557951,4.617027E-3,17.619505,0.017981,16.708508,0.015002,206.796616,328.628204,4.107976,12.005076,2.922382,4.6,28.25762169,107.8,23.766237,26.606054,30.369024,9.491915,11.187752,12.964287,88.077026,85.341415,88.661819
nyu506106,587731512067686604,16.05643805,-0.5032554,2738,40,2,25,GALAXY,16.481441,4.284675E-3,15.571979,3.274712E-3,16.608795,0.010576,15.723147,9.842144E-3,1221.93274,1191.22949,6.950343,21.339523,3.070283,4.6,28.25762164,107.8,31.902273,40.870171,46.5518,19.105501,23.129757,24.784691,128.873154,126.864899,128.500519
nyu506104,587731512067686593,16.02933154,-0.42183383,2738,40,2,25,GALAXY,16.011217,3.315856E-3,15.089783,2.684021E-3,16.051226,4.238137E-3,15.170654,3.011939E-3,1961.95166,944.580994,7.614301,23.262159,3.055062,4.6,28.25762164,107.8,34.708179,38.589939,42.555202,22.674088,26.052443,29.313063,23.439171,26.134991,24.779642
nyu506083,587731512067620999,15.84552145,-0.46928432,2738,40,2,24,GALAXY,17.050982,4.511259E-3,16.21607,3.693853E-3,17.139015,0.03399,16.3188,0.031963,1530.61963,634.428467,3.900596,11.691068,2.997252,4.6,28.25762162,107.8,23.535236,28.516218,27.483902,10.47489,13.313756,14.917885,12.109654,13.952274,16.784386
nyu506082,587731512067620998,15.84411652,-0.46169498,2738,40,2,24,GALAXY,16.664932,3.900875E-3,15.723902,3.126758E-3,16.755144,0.012638,15.843584,0.011144,1599.60046,621.633972,4.503053,13.627829,3.026353,4.6,28.25762162,107.8,25.170214,28.667925,33.535904,17.986917,23.381065,27.04616,104.078087,101.231056,82.532753
nyu506080,587731512067620976,15.84011486,-0.48045356,2738,40,2,24,GALAXY,16.750511,4.284192E-3,15.884467,3.417445E-3,16.797308,7.939698E-3,15.949628,6.601475E-3,1429.08789,585.29541,6.26495,20.022842,3.19601,4.6,28.25762162,107.8,24.588257,31.636446,32.147343,22.118534,27.226856,30.115921,159.244125,153.187317,161.167404
nyu506042,587731512067424420,15.47972941,-0.57539,2738,40,2,21,GALAXY,17.390928,5.600606E-3,16.429691,4.171992E-3,17.440147,0.010421,16.495937,9.180761E-3,565.739563,1391.92114,5.071748,15.282896,3.013339,4.6,28.25762165,161.7,21.617386,27.03097,30.080931,12.882506,17.367645,18.840378,173.627106,163.671829,170.315903
nyu504268,587731511549362338,58.42203747,-0.87859028,2738,40,1,308,GALAXY,16.869122,4.515823E-3,15.85601,3.232055E-3,16.967497,0.018493,15.966462,0.019977,1622.86975,1181.83289,4.511796,13.721013,3.041142,4.71,28.27845037,161.7,23.105778,33.206623,36.9058,15.559604,22.13521,27.402678,50.464073,59.578133,55.426407
nyu504266,587731511549362298,58.30011622,-0.95969304,2738,40,1,308,GALAXY,17.815086,0.010276,16.822058,6.252185E-3,18.096828,0.023353,17.090591,0.016762,885.441345,73.536438,6.744301,18.506935,2.744085,4.71,28.27845037,161.7,23.528315,29.355265,28.98785,8.42919,12.267189,14.095311,166.082443,166.090103,167.663757
nyu504257,587731511549296846,58.25245839,-0.9619585,2738,40,1,307,GALAXY,18.488623,0.014229,17.341419,7.590394E-3,18.634838,0.029257,17.570965,0.015442,864.871155,1001.349,5.050823,13.390075,2.651068,4.71,28.27845036,161.7,13.754909,16.341059,16.902411,9.609724,13.402003,15.186486,32.136024,56.056839,60.960209
nyu504203,587731511549100144,57.82321097,-0.89298322,2738,40,1,304,GALAXY,15.686874,3.458433E-3,14.644986,2.44594E-3,15.783452,7.897564E-3,14.736813,0.016259,1492.11804,1182.11755,15.567886,47.041943,3.021729,4.71,28.2784504,161.7,49.299263,69.408676,84.119263,33.33683,46.821266,48.724846,153.784439,150.912964,155.289886
nyu504059,587731511548248175,55.80820519,-1.01871281,2738,40,1,291,GALAXY,15.150238,2.708692E-3,14.201489,2.130748E-3,15.294785,4.046886E-3,14.372378,2.786496E-3,349.294861,557.467346,13.385555,38.816113,2.899851,4.71,28.27845053,161.7,46.837067,58.760109,67.48317,42.591187,52.348125,56.389713,84.154556,77.35759,67.519875
nyu503736,587731511546806355,52.57156636,-0.92018077,2738,40,1,269,GALAXY,14.643853,2.235608E-3,13.682229,1.859895E-3,14.68633,3.168385E-3,13.711867,2.755671E-3,1245.44348,1075.18188,16.707598,53.600254,3.208137,4.71,28.27845071,161.7,64.403305,79.004044,86.394524,53.188732,69.827499,75.874931,81.760025,81.175613,84.442947
nyu503692,587731511546675407,52.31041523,-0.91428931,2738,40,1,267,GALAXY,17.957445,8.999666E-3,16.943363,6.395529E-3,17.998198,0.020189,16.938971,0.010406,1298.91345,1423.71484,5.298657,16.266062,3.069846,4.71,28.27845069,161.7,15.314979,20.868063,22.310543,14.476251,18.763222,20.44319,30.847414,138.333923,129.137848
nyu503575,587731511546151010,51.00196515,-0.85624351,2738,40,1,259,GALAXY,18.457056,9.873915E-3,17.51251,6.349131E-3,18.542034,0.016976,17.575499,0.015509,1826.84338,416.249847,3.129891,8.493787,2.713764,4.71,28.27845066,161.7,13.284833,17.030043,19.034788,6.428539,8.563592,8.362895,32.33073,27.270798,27.37381
nyu503490,587731511545757880,50.18920749,-1.04472798,2738,40,1,253,GALAXY,14.498819,2.255067E-3,13.453816,1.853327E-3,14.519519,5.269863E-3,13.604917,8.468426E-3,113.201767,1193.49377,18.64992,57.691296,3.09338,4.71,28.2784507,161.7,80.34832,92.653198,93.780304,48.946621,59.574554,64.40184,172.356476,166.338867,164.895218
nyu503354,587731511545364645,49.24926599,-0.9012296,2738,40,1,247,GALAXY,16.645002,5.04764E-3,15.711135,3.565433E-3,16.826029,0.027759,15.894323,0.026992,1417.45227,814.428894,8.00502,24.036324,3.002656,4.71,28.27845071,161.7,41.421227,48.595081,44.846909,10.745775,12.643221,14.50292,116.062943,113.40065,112.493668
nyu503218,587731511544905792,48.16525055,-1.04756145,2738,40,1,240,GALAXY,15.976394,3.312642E-3,15.139093,2.639538E-3,16.063429,0.014816,15.240772,0.014703,87.642265,486.129028,7.556821,24.155056,3.196457,4.71,28.27845069,161.7,41.844761,51.2141,56.387974,22.635237,28.739418,33.217884,104.566338,103.823578,106.059334
nyu503165,587731511544643737,47.64878239,-0.84406635,2738,40,1,236,GALAXY,17.66934,7.5264E-3,16.666471,4.849672E-3,17.61813,0.019633,16.617199,0.01443,1937.24854,1234.93701,6.09439,16.318182,2.677574,4.71,28.2784507,161.7,23.102961,30.028496,31.688854,9.269521,11.709304,12.847833,126.597488,125.074783,127.078423
nyu503144,587731511544578193,47.37600849,-0.93383364,2738,40,1,235,GALAXY,17.621004,7.476459E-3,16.683689,5.54988E-3,17.759233,0.018311,16.880333,0.013039,1120.85559,116.244797,4.632464,12.962285,2.79814,4.71,28.27845068,161.7,24.655106,30.337837,34.648247,10.147743,11.918188,13.961877,33.300781,29.018356,31.557205
nyu503127,587731511544512597,47.32075103,-0.90667997,2738,40,1,234,GALAXY,15.318586,2.667643E-3,14.443453,2.202573E-3,15.432821,7.103401E-3,14.563866,7.056262E-3,1367.7207,974.920471,9.076082,29.503954,3.250737,4.71,28.2784507,161.7,46.867081,57.243313,60.722824,35.237453,45.143353,48.467621,63.608086,56.719387,63.659763
nyu503097,587731511544381557,47.02626199,-0.99487846,2738,40,1,232,GALAXY,16.989395,5.503729E-3,16.057417,4.798746E-3,17.083044,0.027611,16.151043,0.025065,565.791138,1019.6297,4.183507,12.705715,3.037096,4.71,28.27845072,161.7,21.194635,24.926958,28.051279,14.539392,18.438553,21.869911,30.016918,15.689194,13.064102
nyu503096,587731511544381544,47.0227858,-0.97852353,2738,40,1,232,GALAXY,15.911912,3.422133E-3,15.046948,2.628946E-3,16.098196,0.01604,15.238035,0.015052,714.44928,987.999634,8.312267,25.802475,3.104144,4.71,28.27845072,161.7,41.738899,52.53746,56.045506,33.492474,42.03801,45.391155,129.298615,146.11528,143.874771
nyu503094,587731511544381527,46.97924236,-0.94665145,2738,40,1,232,GALAXY,17.197041,5.621984E-3,16.30175,4.165451E-3,17.290737,8.301808E-3,16.383034,5.560159E-3,1004.19122,592.058105,4.4259,12.646989,2.857496,4.71,28.27845072,161.7,19.922773,22.142309,22.788404,12.248867,15.052673,17.814407,75.590996,81.870026,69.9104
nyu503072,588015507679281263,46.89373597,-1.04944613,3325,41,1,421,GALAXY,16.353685,4.538246E-3,15.389855,2.976381E-3,16.488094,0.350794,15.558932,0.318335,2017.62097,697.334045,5.725975,18.987398,3.316011,4.71,28.12542787,53.9,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999
nyu503022,587731511544184958,46.61251617,-0.8466299,2738,40,1,229,GALAXY,15.992642,3.441373E-3,15.160322,2.736021E-3,16.185934,7.288156E-3,15.37382,7.045908E-3,1913.46851,1340.5918,6.894818,18.069399,2.620722,4.71,28.27845077,161.7,35.805885,45.627247,55.299744,20.796936,26.338179,29.230488,20.124062,20.533583,21.511625
nyu502989,587731511544119382,46.33240945,-0.9706967,2738,40,1,228,GALAXY,15.735271,3.658562E-3,14.6163,2.500893E-3,15.795385,0.021314,14.75095,0.024909,785.773315,155.099548,16.556213,52.650539,3.180108,4.71,28.27845076,161.7,84.784813,93.478981,81.329399,24.906895,30.407995,36.12846,150.375687,152.016342,155.403122
nyu502945,587731511543988357,46.16388851,-0.90160956,2738,40,1,226,GALAXY,17.906979,7.105187E-3,16.943678,4.764542E-3,17.939104,0.012608,17.022133,7.846587E-3,1414.14575,1345.04773,3.389977,8.869031,2.616251,4.71,28.27845074,161.7,14.26125,16.222342,16.147074,9.012935,10.420316,12.892735,86.522812,86.555496,110.163658
nyu502928,587731511543922798,45.98554633,-0.97483885,2738,40,1,225,GALAXY,16.255739,3.649528E-3,15.384237,2.799495E-3,16.351168,0.026417,15.445062,0.025405,748.261536,1084.8595,5.842311,19.674839,3.367646,4.71,28.27845076,161.7,28.942863,37.910484,42.071045,26.274298,34.019978,39.179253,103.815308,133.09729,128.572418
nyu502796,587731511543136331,44.16848188,-0.93731244,2738,40,1,213,GALAXY,15.942968,3.200527E-3,15.071232,2.61555E-3,16.05592,0.031398,15.203444,0.028851,1089.7373,898.695313,5.979553,18.548922,3.102058,4.71,28.2784508,161.7,38.503933,44.642208,49.027073,15.904929,17.99744,22.430302,33.335648,32.517048,34.530918
nyu502700,587731511542546447,42.80540598,-0.84498813,2738,40,1,204,GALAXY,15.639001,3.052288E-3,14.807748,2.455476E-3,15.711124,4.794403E-3,14.899795,3.431717E-3,1928.83435,755.369141,10.15291,31.623169,3.11469,4.71,28.27845085,161.7,38.077747,46.95557,50.060463,33.590668,41.416439,47.690262,117.570107,133.147247,145.863174
nyu502675,587731511542415491,42.54208511,-0.86711592,2738,40,1,202,GALAXY,15.29231,2.864467E-3,14.447714,2.311005E-3,15.394079,0.010949,14.587375,0.010672,1727.71362,1083.5741,13.084469,40.549099,3.099025,4.71,28.27845082,161.7,54.189793,65.941643,68.513916,34.692711,44.468746,47.756363,40.162853,33.488129,30.004169
nyu502480,587731511541497983,40.4618029,-0.84069442,2738,40,1,188,GALAXY,16.435061,3.814806E-3,15.576788,2.997834E-3,16.424089,0.012977,15.604167,0.011299,1967.76331,1225.03064,5.773025,20.121609,3.485453,4.71,28.27845082,161.7,31.590033,38.537605,42.916649,24.603735,28.519239,31.762356,40.802929,43.313004,34.017006
nyu502479,587731511541497959,40.36039945,-0.94780147,2738,40,1,188,GALAXY,17.147398,5.771558E-3,16.239485,5.046454E-3,17.076975,0.017971,16.228931,0.012428,994.00769,303.114319,6.642823,17.292957,2.603254,4.71,28.27845082,161.7,29.179861,33.435734,36.301991,11.826241,13.092762,14.766065,172.377533,172.12793,170.76088
nyu502405,587731511540711548,38.65725459,-0.97979896,2738,40,1,176,GALAXY,15.737876,3.262515E-3,14.858648,2.549937E-3,15.849632,0.064515,15.011127,0.055755,703.134033,1151.64331,10.294699,34.081211,3.31056,4.71,28.27845089,161.7,81.128441,98.556992,104.318817,20.402355,25.551332,28.869188,54.229774,52.546425,53.499973
nyu502366,587731511540318218,37.67272684,-0.9937046,2738,40,1,170,GALAXY,17.939814,8.057119E-3,17.111813,5.59039E-3,17.99679,0.026453,17.17807,0.027427,576.882507,367.158508,4.22612,13.446675,3.181801,4.71,28.2784509,161.7,20.912201,24.533152,29.587784,9.910869,13.293074,12.957938,30.92543,40.715721,35.370628
nyu502357,587731511540252684,37.48974698,-1.00592721,2738,40,1,169,GALAXY,17.41172,5.560887E-3,16.525108,4.035865E-3,17.509701,0.085857,16.611397,0.022653,465.773834,64.518578,3.507044,10.31213,2.940405,4.71,28.2784509,161.7,22.463596,22.332855,24.858675,8.408711,11.939165,14.814567,20.058615,16.969173,17.26016
nyu502253,587731511539662867,36.17976425,-0.85259113,2738,40,1,160,GALAXY,18.368206,9.011976E-3,17.489248,6.095543E-3,18.413574,0.014632,17.538128,9.754198E-3,1860.23108,404.262695,2.895775,8.276332,2.858071,4.71,28.27845092,161.7,11.400732,13.636947,13.675836,8.488283,10.592566,12.514651,11.854961,155.337479,5.596921
nyu502246,587731511539597437,36.02035013,-0.98397532,2738,40,1,159,GALAXY,18.120766,7.983658E-3,17.205013,5.364291E-3,18.20598,0.013578,17.287785,9.470723E-3,665.57959,316.022522,3.05262,8.638992,2.830026,4.71,28.27845092,161.7,14.64138,17.352831,20.428724,7.93198,10.41827,10.455077,127.961739,120.6436,125.832962
nyu502241,587731511539531932,35.95137094,-0.98278156,2738,40,1,158,GALAXY,17.200579,6.297822E-3,16.291643,4.238471E-3,17.32839,0.0129,16.430037,8.554051E-3,676.375244,1049.90259,6.443148,19.946875,3.095828,4.71,28.27845093,161.7,20.525089,28.304199,33.538033,18.241213,23.141026,26.66194,92.790428,101.784271,105.020844
nyu502165,587731511538614406,33.79490879,-0.87275553,2738,40,1,144,GALAXY,17.46608,7.277207E-3,16.546288,4.742354E-3,17.595627,0.071617,16.708172,0.075386,1676.93994,499.377441,5.238925,16.351734,3.1212,4.71,28.2784508,161.7,27.988102,33.034855,35.325886,8.664896,9.26076,10.489312,127.037247,131.280151,131.223984
nyu502142,587731511538286716,33.07423856,-1.02908676,2738,40,1,139,GALAXY,17.460384,6.164979E-3,16.580187,4.37023E-3,17.464388,0.014,16.633427,0.01548,255.637543,752.433899,4.708787,15.378399,3.265894,4.71,28.2784508,161.7,20.173086,27.448824,31.276258,16.81028,19.784307,27.316914,58.730736,48.028465,32.607407
nyu502138,587731511538221212,32.91988585,-0.88372601,2738,40,1,138,GALAXY,17.771727,7.178397E-3,16.932711,5.451193E-3,17.898674,0.014456,17.025482,0.016571,1577.14966,709.994812,3.657536,10.698281,2.924997,4.71,28.27845079,161.7,17.819557,21.946907,19.926434,7.774761,8.898419,11.589048,127.400627,131.620224,132.142532
nyu502105,587731511538090080,32.58767409,-0.89555314,2738,40,1,136,GALAXY,17.218077,5.479014E-3,16.30715,3.875625E-3,17.114538,0.011341,16.206768,8.999078E-3,1469.85071,411.676483,6.061597,22.45862,3.705066,4.71,28.27845075,161.7,23.455444,29.446985,31.259897,20.332121,24.784758,28.717073,113.79081,108.468483,125.361229
nyu502016,587731511537631331,31.62005691,-0.8970219,2738,40,1,129,GALAXY,18.265753,9.785742E-3,16.967812,5.124803E-3,18.200274,0.057624,17.005077,0.025915,1456.72412,1141.72815,4.088501,13.323989,3.258893,4.71,28.27845067,161.7,19.512733,28.487297,26.480146,12.484246,15.938901,16.087425,114.473213,77.38662,88.258995
nyu501970,587731511537369346,31.0100497,-0.87763415,2738,40,1,125,GALAXY,18.20186,0.010039,17.317804,6.711032E-3,18.248661,0.019963,17.382851,0.012408,1633.30139,1040.00928,4.505565,13.362103,2.965689,4.71,28.27845064,161.7,13.16681,17.330067,19.762461,11.974398,13.814817,17.592035,162.39505,158.591599,14.491524
nyu501968,587731511537369319,30.97296098,-0.97661981,2738,40,1,125,GALAXY,16.056618,3.631554E-3,15.208797,2.784505E-3,16.227365,8.542213E-3,15.379921,7.38025E-3,733.252075,702.858582,7.966594,25.131687,3.154634,4.71,28.27845064,161.7,34.415028,43.287758,46.475952,25.864439,30.350227,35.039974,38.838631,42.083374,43.807552
nyu501965,587731511537369278,30.93910039,-0.96093999,2738,40,1,125,GALAXY,16.34833,5.003604E-3,15.528027,4.732207E-3,16.398949,7.82697E-3,15.571799,4.937667E-3,875.797302,394.985901,8.943196,27.181597,3.03936,4.71,28.27845064,161.7,32.092113,35.940605,38.083218,27.038128,32.199234,35.861984,85.483276,90.590759,114.916023
nyu501964,587731511537369195,30.99165591,-0.97116811,2738,40,1,125,GALAXY,16.077587,3.322963E-3,15.281816,2.765664E-3,16.135317,0.011827,15.347111,0.011141,782.817505,872.824158,6.031468,19.705832,3.26717,4.71,28.27845064,161.7,33.099438,39.495884,45.789307,23.397165,28.537331,31.473658,103.920181,109.134331,106.478683
nyu501956,587731511537303658,30.81674925,-1.04034756,2738,40,1,124,GALAXY,15.549404,2.993505E-3,14.683083,2.364019E-3,15.657677,5.52189E-3,14.784296,4.394982E-3,154.159286,643.726379,11.325191,36.261795,3.20187,4.71,28.27845064,161.7,44.539635,54.203472,61.777348,35.068447,46.826591,52.290665,46.208344,44.581161,52.924622
nyu501931,587731511537172660,30.56447637,-0.98522676,2738,40,1,122,GALAXY,16.903776,4.655726E-3,16.070019,3.535241E-3,17.020273,0.012437,16.190224,0.010925,655.163818,1072.04065,4.719347,14.179828,3.004616,4.71,28.27845062,161.7,25.229549,30.411985,34.700317,14.110745,18.023338,18.480675,3.405938,4.986661,10.540861
nyu501918,587731511537172515,30.49250728,-0.99775883,2738,40,1,122,GALAXY,15.803289,3.026624E-3,14.944308,2.492881E-3,15.873133,0.04492,15.011827,0.0438,541.283081,417.779449,6.465363,22.934185,3.547239,4.71,28.27845062,161.7,46.437431,50.485516,54.133163,19.489552,23.773903,27.805731,50.275761,52.184227,49.268608
nyu501912,587731511537107111,30.43507323,-0.93444808,2738,40,1,121,GALAXY,15.921179,3.498274E-3,15.091577,2.711458E-3,16.113852,0.014428,15.254255,0.015488,1116.83252,1256.56311,8.864406,26.482937,2.987559,4.71,28.27845061,161.7,37.259022,48.474953,53.19532,25.101534,30.984934,34.050598,44.758247,39.514992,41.555435
nyu501900,587731511537041509,30.19114337,-0.90807068,2738,40,1,120,GALAXY,16.378698,4.313795E-3,15.462049,3.238755E-3,16.267139,9.284884E-3,15.41653,0.011752,1356.71277,399.909454,13.015611,33.677094,2.587438,4.71,28.27845062,161.7,56.436779,62.534851,61.065315,13.467853,16.036413,18.181471,145.419388,146.078522,147.762207
nyu501888,587731511536976010,30.03278208,-1.01557769,2738,40,1,119,GALAXY,16.219721,4.146168E-3,15.383346,3.09911E-3,16.14859,0.012568,15.335415,6.058937E-3,379.303406,321.20993,14.888922,41.720623,2.802125,4.71,28.27845062,161.7,45.705513,50.645054,52.979351,42.71344,46.61504,47.85545,29.494715,28.897011,26.530664
nyu501803,587731511536255189,28.43100499,-0.97182174,2738,40,1,108,GALAXY,16.277342,3.777418E-3,15.421028,2.969492E-3,16.406372,0.05481,15.565691,0.049338,777.816895,729.57251,6.3099,19.521301,3.093758,4.71,28.27845045,107.8,38.450821,43.716278,46.03817,14.332219,18.082756,22.160126,56.150188,56.280117,58.764515
nyu501786,587731511536189542,28.20953472,-1.01679247,2738,40,1,107,GALAXY,17.279936,5.355446E-3,16.449471,4.029501E-3,17.414244,0.017588,16.576468,0.017598,369.038635,77.194901,3.789875,11.027979,2.909853,4.71,28.27845045,107.8,20.134394,24.412485,26.5734,10.026247,14.083193,14.912208,173.853653,166.968521,171.899673
nyu501781,587731511536124087,28.20513318,-1.00168699,2738,40,1,106,GALAXY,16.242714,3.833717E-3,15.33135,2.857463E-3,16.254204,7.748641E-3,15.366839,6.679635E-3,506.265289,1398.18396,9.152049,30.91437,3.377863,4.71,28.27845043,161.7,35.748791,49.343887,56.265182,27.783438,34.276485,38.300045,177.220581,171.983871,168.79335
nyu501774,587731511536123949,28.1377204,-0.96231329,2738,40,1,106,GALAXY,17.213684,6.588708E-3,16.264767,4.296548E-3,17.420006,0.433653,16.469957,0.234036,864.187683,785.29187,6.150792,17.022926,2.767599,4.71,28.27845043,161.7,25.102835,31.261326,38.442852,10.675654,14.536009,15.842382,11.222102,9.937714,17.53826
nyu501756,587731511535992933,27.79464145,-1.02808328,2738,40,1,104,GALAXY,15.607512,2.913648E-3,14.709752,2.339802E-3,15.479572,6.70239E-3,14.584668,3.639565E-3,266.41983,388.338959,12.076774,42.928875,3.554664,4.71,28.27845043,161.7,49.300587,54.711689,58.94606,45.11367,52.705811,56.140305,143.746078,151.688065,149.98967
nyu501693,587731511535468586,26.60514893,-0.86395943,2738,40,1,96,GALAXY,16.161591,3.54308E-3,15.287858,2.778957E-3,16.155552,7.457372E-3,15.293128,6.302333E-3,1758.57593,461.902222,7.48808,25.970842,3.468292,4.71,28.27845041,161.7,38.750832,46.376789,48.557995,22.075655,25.223436,28.439701,3.623655,3.520647,5.601208
nyu501670,587731511535140867,25.84358794,-0.94723706,2738,40,1,91,GALAXY,16.005472,3.316405E-3,15.134492,2.638685E-3,16.018959,6.436781E-3,15.166238,5.044291E-3,1001.27911,342.947113,7.880419,25.654436,3.255466,4.71,28.27845039,107.8,36.882771,41.818924,46.267666,24.264374,29.963436,32.754307,3.077721,1.233517,7.5024
nyu501599,587731511534420126,24.26539276,-0.86187756,2738,40,1,80,GALAXY,18.237761,9.513335E-3,17.327497,6.446589E-3,18.347595,0.01539,17.466957,9.33964E-3,1777.80469,965.999146,3.394001,9.126504,2.68901,4.71,28.27845039,107.8,12.651222,15.321877,18.574799,9.536631,12.410203,14.151447,62.796219,47.41777,81.518272
nyu501597,587731511534420095,24.17225388,-0.96968977,2738,40,1,80,GALAXY,18.554527,0.012351,17.672831,7.814129E-3,18.436337,0.048404,17.592037,0.030152,797.497314,119.31604,5.974845,15.603721,2.611569,4.71,28.27845039,107.8,20.288376,23.325958,25.203377,6.803102,8.221798,9.202327,120.525108,118.137291,117.254219
nyu501592,587731511534354620,24.11843899,-1.01584689,2738,40,1,79,GALAXY,17.114859,5.635437E-3,16.225508,4.1385E-3,17.222294,0.019499,16.348492,0.018451,377.89447,991.183472,5.517959,17.744581,3.215787,4.71,28.27845039,107.8,29.192514,32.822216,36.114922,13.331795,17.33853,18.35527,7.090367,9.425911,9.671223
nyu501578,587731511534223524,23.83962961,-0.9047024,2738,40,1,77,GALAXY,18.117765,7.936718E-3,17.217548,5.415011E-3,18.174761,0.020193,17.283676,0.013927,1388.24597,1178.03162,3.229691,9.258759,2.866763,4.71,28.27845042,107.8,15.463453,18.692238,19.730015,9.24607,11.83545,15.201722,32.656422,23.936396,38.979889
nyu501572,587731511534223484,23.75852946,-1.0145611,2738,40,1,77,GALAXY,17.374548,6.204957E-3,16.41254,4.145054E-3,17.446098,0.011566,16.495544,6.812994E-3,389.408813,440.766174,5.506433,16.392267,2.97693,4.71,28.27845042,107.8,19.868135,24.382841,26.329775,15.371351,19.16728,21.614803,97.941162,99.341408,103.677727
nyu501566,587731511534223380,23.76430398,-0.90766805,2738,40,1,77,GALAXY,15.618005,3.175155E-3,14.628216,2.338235E-3,15.701308,0.057689,14.653591,0.061063,1361.22974,493.160797,14.053734,45.628933,3.246748,4.71,28.27845042,107.8,49.651981,68.532295,75.662468,32.387924,45.189732,47.931618,175.385696,167.44281,167.387253
nyu501556,587731511534157889,23.68908645,-0.99490695,2738,40,1,76,GALAXY,16.104103,4.576294E-3,15.199339,4.243126E-3,16.172092,6.81484E-3,15.268582,6.27964E-3,568.060669,1170.29858,7.294484,23.789486,3.261298,4.71,28.2784504,107.8,36.559044,42.446697,41.913017,20.765589,24.636538,28.185183,123.270844,124.109413,124.992439
nyu501546,587731511534092432,23.5055468,-1.00392903,2738,40,1,75,GALAXY,17.459169,6.464418E-3,16.521646,4.35422E-3,17.522551,0.014325,16.60055,9.119458E-3,486.037689,862.720337,5.420544,16.91062,3.119727,4.71,28.27845039,107.8,17.828764,23.080864,29.028477,17.479271,21.704023,23.632442,29.445042,153.359665,143.772446
nyu501543,587731511534092352,23.53320983,-1.0322863,2738,40,1,75,GALAXY,14.22076,2.082759E-3,13.391357,1.893945E-3,14.156486,0.059702,13.361515,0.059695,228.32666,1114.25024,16.284128,52.451027,3.220991,4.71,28.27845039,107.8,123.093513,127.761772,127.689056,28.464022,33.659565,39.329613,70.629967,70.025902,70.541153
nyu501521,587731511533830192,22.92547739,-0.93308301,2738,40,1,71,GALAXY,13.95015,2.071649E-3,12.991695,1.801676E-3,13.788119,0.091884,12.879747,0.092484,1130.14795,1032.83801,26.455765,83.098442,3.141033,4.71,28.2784504,107.8,200.272827,223.538513,223.901474,42.686867,49.672554,54.303921,85.643257,84.520164,84.210098
nyu501496,587731511533568042,22.24433083,-0.94899858,2738,40,1,67,GALAXY,13.700324,1.873313E-3,12.865416,1.680558E-3,13.692783,1.883868E-3,12.869597,2.918834E-3,986.020447,284.536835,27.378204,76.566872,2.796636,4.71,28.27845029,107.8,102.286568,142.145706,143.527435,73.18248,79.738365,84.796379,162.086197,171.301392,170.18483
nyu501442,588015507667943565,21.03007378,-1.0495039,3325,41,1,248,GALAXY,17.14469,6.673627E-3,16.170734,4.213529E-3,17.328629,0.015085,16.295919,9.790218E-3,2015.76746,1041.15161,6.395279,18.210691,2.847521,4.71,28.12543792,107.8,23.256172,24.246256,25.696695,12.24091,16.522627,21.190128,151.968979,146.097931,171.981995
nyu501378,587731511532454047,19.75452229,-0.92179294,2738,40,1,50,GALAXY,17.184734,6.287504E-3,16.35533,4.348479E-3,17.400818,0.01147,16.52482,0.01209,1233.2207,786.021362,5.22297,15.236161,2.917145,4.71,28.27845011,161.7,23.988428,32.147457,34.13924,11.360575,14.719831,16.636431,104.224091,104.838409,104.618202
nyu501368,587731511532453955,19.72342776,-1.00200051,2738,40,1,50,GALAXY,14.367187,2.228154E-3,13.474008,1.847305E-3,14.545657,3.401029E-3,13.622788,2.063053E-3,504.010315,503.379913,22.575373,66.909233,2.963815,4.71,28.27845011,161.7,86.210899,108.678963,122.094131,55.056137,67.949394,74.365417,70.615601,68.622726,68.982063
nyu501365,587731511532388519,19.66966509,-1.00972576,2738,40,1,49,GALAXY,17.322891,6.557306E-3,16.494049,4.771523E-3,17.502798,0.012095,16.654602,8.419014E-3,433.804626,1375.52246,5.416988,14.373878,2.653481,4.71,28.2784501,161.7,17.787193,23.85096,24.42565,13.191263,15.261229,16.567709,19.803698,15.391579,34.650013
nyu501355,587731511532388422,19.65542297,-0.99005847,2738,40,1,49,GALAXY,16.715796,4.066883E-3,15.846715,3.142772E-3,16.840176,0.015528,15.954484,0.015661,612.565613,1245.99207,4.028138,11.723918,2.910505,4.71,28.2784501,161.7,27.269382,32.504601,37.155834,12.747318,16.519196,18.420242,168.500198,169.454712,168.746811
nyu501349,588015507667288203,19.51264619,-1.04948393,3325,41,1,238,GALAXY,17.071377,0.02072,16.167549,4.289146E-3,17.180285,0.013126,16.34964,9.534694E-3,2015.68958,857.288818,5.89076,16.977579,2.882069,4.71,28.12543834,107.8,25.307856,28.699116,26.993818,13.593932,16.615934,19.231613,46.75589,40.646057,35.950352
nyu501313,587731511531995164,18.66101874,-1.02065296,2738,40,1,43,GALAXY,13.918724,1.914008E-3,12.967495,1.704496E-3,13.948223,8.621143E-3,13.004994,9.124449E-3,335.049103,371.748474,18.244047,52.44091,2.874412,4.71,28.27845004,161.7,88.296272,106.032158,114.522842,54.871086,68.325966,75.035362,157.096191,157.848679,156.715912
nyu501290,587731511531798619,18.22768962,-0.92827061,2738,40,1,40,GALAXY,17.057812,5.981728E-3,16.11014,3.928592E-3,17.291109,0.013709,16.342186,0.01102,1174.85608,515.234131,6.195089,17.697544,2.856706,4.71,28.27845001,107.8,28.176212,34.666874,36.544128,13.149217,16.209833,19.108334,112.810043,114.855217,115.137573
nyu501287,587731511531733109,18.13088019,-1.03636516,2738,40,1,39,GALAXY,18.433855,9.431044E-3,17.518356,6.147463E-3,18.451075,0.014619,17.547506,9.888886E-3,192.235901,996.25,2.768453,8.13876,2.939822,4.71,28.27845003,107.8,12.528296,15.017946,18.333467,9.38009,12.971181,14.236203,76.010559,53.2729,49.4147
nyu501225,587731511531405428,17.28018496,-0.90469809,2738,40,1,34,GALAXY,17.379622,5.576815E-3,16.449284,0.01635,17.388224,0.011134,16.463963,0.014547,1388.79382,66.977448,4.159559,12.888952,3.098635,4.71,28.27845009,161.7,20.22064,24.127497,24.674391,11.295857,13.930459,15.048717,38.634918,33.759323,38.723747
nyu501193,587731511531208863,16.87995805,-0.98312522,2738,40,1,31,GALAXY,16.387981,4.276013E-3,15.469025,3.061511E-3,16.572592,8.277973E-3,15.629665,5.281004E-3,675.668945,511.268921,8.582953,23.003016,2.680082,4.71,28.27845008,107.8,30.499012,37.770912,40.73436,18.910622,22.671953,25.802906,134.887848,130.947128,132.101944
nyu501169,587731511531012254,16.49285502,-0.88421494,2738,40,1,28,GALAXY,17.683929,9.6699E-3,16.599186,4.859449E-3,17.47176,0.017181,16.481192,0.010239,1574.91028,1074.8114,8.214415,22.651194,2.757493,4.71,28.27845008,107.8,25.886942,34.176212,34.89489,15.112503,18.369156,21.535988,36.240067,45.139744,46.987808
nyu501168,587731511531012247,16.47508876,-1.03141612,2738,40,1,28,GALAXY,17.668556,6.21561E-3,16.750261,4.400786E-3,17.716442,0.01566,16.806084,0.012704,236.679428,913.428284,3.534849,10.565969,2.989086,4.71,28.27845008,107.8,19.679731,22.888136,22.54277,8.629684,10.587069,12.272184,22.490351,19.940041,18.505131
nyu501164,587731511531012219,16.42472333,-0.9755911,2738,40,1,28,GALAXY,16.288527,4.125152E-3,15.401251,3.003073E-3,16.35285,8.233798E-3,15.479482,5.093984E-3,744.041443,455.469635,10.334273,31.884892,3.085354,4.71,28.27845008,107.8,31.491081,41.263199,44.172859,30.460285,35.116917,39.254032,120.656448,126.594566,124.543831
nyu501133,587731511530881235,16.19581073,-1.01565211,2738,40,1,26,GALAXY,17.90239,6.986811E-3,17.087828,5.158048E-3,17.983507,0.01926,17.145571,0.024414,379.871948,1096.64136,3.248602,9.617149,2.960396,4.71,28.27845007,107.8,15.628557,19.581625,20.17955,7.245427,9.253215,10.469859,59.078758,58.120972,53.56329
nyu501124,587731511530881174,16.10517321,-0.87240225,2738,40,1,26,GALAXY,16.932505,5.056794E-3,16.010754,3.568082E-3,17.054892,0.015821,16.14724,0.012507,1682.22998,272.546722,5.992304,17.613523,2.939357,4.71,28.27845007,107.8,27.640364,34.824738,35.950806,12.113074,13.635104,15.150241,137.968506,137.050232,139.896362
nyu501121,587731511530881163,16.09554948,-0.96690386,2738,40,1,26,GALAXY,18.467684,0.011242,17.587883,7.289783E-3,18.562864,0.022053,17.684406,0.01401,822.92511,185.095459,4.144097,11.578811,2.794049,4.71,28.27845007,107.8,11.827388,14.082913,16.666269,10.432299,13.266263,15.389887,108.182426,76.433975,40.743458
nyu501117,587731511530881037,16.08655137,-0.8815666,2738,40,1,26,GALAXY,16.830383,5.010089E-3,15.872567,3.502612E-3,16.997814,0.100815,16.070868,0.02243,1598.88843,103.254883,6.007179,16.657143,2.772872,4.71,28.27845007,107.8,25.476751,29.945187,35.532085,13.985325,16.953657,18.742821,164.852386,172.499207,178.15741
nyu501105,587731511530815668,16.05876566,-0.95963707,2738,40,1,25,GALAXY,18.118128,0.010279,17.18709,7.79348E-3,18.038912,0.023705,17.133577,0.017092,888.963013,1211.61646,6.359324,16.953289,2.665895,4.71,28.27845008,107.8,25.139338,30.74604,28.091545,7.757725,8.921749,12.555785,21.812885,19.438122,20.60614
nyu501102,587731511530815625,16.016854,-0.8731214,2738,40,1,25,GALAXY,17.258623,5.47916E-3,16.354679,3.887551E-3,17.336012,8.99783E-3,16.43478,5.803919E-3,1675.62976,830.540161,4.502152,13.694674,3.041806,4.71,28.27845008,107.8,18.113758,24.363749,29.848948,16.546825,21.780159,22.376404,99.681824,116.525833,121.677422
nyu501084,587731511530750083,15.90608464,-0.91232017,2738,40,1,24,GALAXY,17.848984,7.431327E-3,16.9715,5.234325E-3,17.929579,0.031475,17.080761,0.032458,1319.11682,1184.42285,3.854399,11.523161,2.989613,4.71,28.2784501,161.7,20.009159,24.140079,23.448677,7.966864,8.90095,9.866838,154.943481,156.737823,161.523987
nyu501082,587731511530750076,15.90242671,-0.84674288,2738,40,1,24,GALAXY,18.049753,8.342549E-3,17.133715,5.559414E-3,18.089285,0.015644,17.203577,9.712547E-3,1915.39795,1151.16235,4.10797,12.286503,2.990894,4.71,28.2784501,161.7,13.490343,17.38887,20.019377,11.858073,15.40919,16.67308,150.500992,69.446815,59.608398
nyu501036,587731511530553440,15.34899458,-0.95288326,2738,40,1,21,GALAXY,15.982911,4.815078E-3,15.102258,4.049505E-3,16.128357,0.011134,15.269908,7.908536E-3,950.002319,202.409943,13.301721,35.212044,2.64718,4.71,28.27845011,161.7,46.264469,52.565281,57.034595,23.312284,30.10183,34.885483,159.664017,157.369766,160.391861
nyu501026,587731511530487992,15.29068823,-0.9742477,2738,40,1,20,GALAXY,16.865252,4.600424E-3,15.985387,3.441523E-3,16.927603,0.014568,16.075932,0.012325,755.738586,1033.41089,4.849721,15.092265,3.111986,4.71,28.27845012,161.7,25.787966,32.019745,35.642506,15.44523,18.582785,23.197033,168.096832,163.440491,165.669754
nyu501005,587731511798792336,14.90203612,-0.98828943,2738,40,1,18,GALAXY,17.406174,6.198287E-3,16.465961,4.229185E-3,17.481129,0.016028,16.548613,0.013731,628.172668,222.130539,5.116382,16.643414,3.252965,4.71,28.27845008,161.7,21.137997,28.377056,31.168304,14.740499,21.296963,23.724556,37.982758,23.372889,12.560853
nyu492398,587731187802112128,331.66025625,1.17688666,2662,40,6,93,GALAXY,15.697727,2.877155E-3,14.787784,2.360316E-3,15.799084,0.011185,14.892164,0.010161,1227.80701,902.75708,9.075397,29.795494,3.283107,4.895,28.24091284,107.8,40.43734,50.683899,55.995178,32.142643,40.155941,44.302311,171.920242,175.473526,177.499954
nyu492397,587731187802112024,331.58550859,1.12103634,2662,40,6,93,GALAXY,15.062968,2.392261E-3,14.171404,2.043688E-3,15.084653,4.542615E-3,14.20791,4.612711E-3,719.932556,223.184036,14.911692,49.419518,3.314146,4.895,28.24091284,107.8,61.853939,77.422729,83.301041,45.453323,53.090714,60.192055,133.306854,133.147736,129.67984
nyu492363,587731187801850081,331.07857858,1.18897372,2662,40,6,89,GALAXY,16.904339,4.5668E-3,15.946301,3.412732E-3,16.90451,8.46037E-3,15.964217,6.115925E-3,1337.83289,1058.72388,7.165344,23.456001,3.273535,4.895,28.24091257,107.8,25.565111,32.133499,35.128426,21.470362,27.095287,32.110279,169.85614,169.28656,171.386429
nyu492126,587731187800342615,327.60044724,1.11636161,2662,40,6,66,GALAXY,16.464205,3.880567E-3,15.559817,3.051673E-3,16.579679,0.010348,15.713958,8.664154E-3,678.009705,741.549377,6.794822,19.055351,2.804393,4.895,28.24091161,107.8,26.950035,31.096529,33.767479,19.836178,24.378645,27.644485,79.050667,74.227531,63.875351
nyu492103,587731187800211857,327.35688244,1.12586093,2662,40,6,64,GALAXY,17.44363,5.375454E-3,16.516781,4.05155E-3,17.516758,8.43523E-3,16.617798,6.173341E-3,764.426453,1249.03186,4.157969,12.288911,2.955508,4.895,28.24091144,107.8,18.664154,23.785164,24.800753,15.979788,19.073944,23.158539,61.250175,68.204308,40.319561
nyu492100,587731187800211749,327.27958969,1.19464989,2662,40,6,64,GALAXY,18.167938,7.877736E-3,17.222507,5.638424E-3,18.226006,0.013733,17.277328,9.744727E-3,1389.88782,546.133423,4.114719,11.982448,2.912094,4.895,28.24091144,107.8,12.800712,16.93535,17.587063,11.522874,13.288782,16.260162,155.402084,156.818405,130.1548
nyu492098,587731187800211732,327.26498842,1.19299052,2662,40,6,64,GALAXY,17.080717,5.221145E-3,16.087717,3.763248E-3,17.170023,0.011712,16.210253,9.761849E-3,1374.8031,413.373077,7.013374,22.071499,3.147058,4.895,28.24091144,107.8,26.701029,34.140293,38.029327,17.657984,23.079441,27.047421,137.409393,146.886002,146.39325
nyu491961,587731187799032243,324.6364902,1.12309589,2662,40,6,46,GALAXY,16.575373,4.242225E-3,15.606715,3.204989E-3,16.551676,0.011654,15.678988,8.955718E-3,739.359802,1016.33118,9.584326,29.100712,3.036282,4.895,28.24091029,107.8,35.52441,44.855927,48.210377,23.293655,27.135725,29.343231,118.276962,120.949173,116.640953
nyu491928,587731187798835692,324.21465244,1.23510278,2662,40,6,43,GALAXY,16.308538,3.88712E-3,15.326448,3.03241E-3,16.313768,0.054352,15.386317,0.05193,1757.62805,1264.17822,11.870103,38.083237,3.208333,4.895,28.24090997,107.8,67.003899,81.138611,79.676743,11.926324,14.11153,16.913879,171.702362,171.548981,172.929977
nyu491922,587731187798835386,324.19081517,1.24901231,2662,40,6,43,GALAXY,15.511531,2.63692E-3,14.62863,2.241653E-3,15.536957,9.085175E-3,14.666231,0.010238,1883.94934,1047.47217,8.765088,31.524622,3.596612,4.895,28.24090997,107.8,44.616245,56.139565,61.916046,38.070019,46.023716,51.404079,35.021973,31.872086,28.892473
nyu491789,587731187797918035,322.11916315,1.16431504,2662,40,6,29,GALAXY,16.947552,4.343244E-3,16.050167,3.417565E-3,17.080671,5.792127E-3,16.172159,4.861965E-3,1114.52661,1267.33191,4.434025,12.060922,2.720084,4.895,28.24090877,107.8,18.10438,21.837601,27.215321,12.910358,16.552933,18.987127,58.609776,57.311249,85.77124
nyu491786,587731187797917712,321.99127005,1.14187855,2662,40,6,29,GALAXY,17.301979,4.820979E-3,16.452894,3.878285E-3,17.375586,0.028279,16.529322,0.027879,910.551331,104.648109,3.559958,10.99377,3.088174,4.895,28.24090877,107.8,24.169907,25.058224,30.493414,8.107524,10.440804,10.039324,41.067078,41.857895,37.754974
nyu491734,587731187797525106,321.22203131,1.07206863,2662,40,6,23,GALAXY,15.787924,4.108573E-3,14.865071,3.423256E-3,15.792239,7.734811E-3,14.878789,7.896296E-3,276.034119,1277.05127,10.052229,36.323307,3.613458,4.895,28.24090825,107.8,56.638313,63.590469,67.871315,23.794767,28.720213,30.379936,121.431023,123.530647,123.672897
nyu491717,587731187797459529,321.03689522,1.25827931,2662,40,6,22,GALAXY,17.031202,5.540372E-3,16.193947,4.29008E-3,17.140057,0.013709,16.272507,9.131852E-3,1968.90051,954.735046,9.472225,26.185856,2.764488,4.895,28.24090821,107.8,25.908541,32.135651,34.603851,21.243425,27.975395,30.078341,108.064888,135.270035,147.617599
nyu491711,587731187797459481,321.0109198,1.18364085,2662,40,6,22,GALAXY,17.294981,5.51076E-3,16.444208,4.451525E-3,17.414606,0.010485,16.582342,0.010229,1290.58936,718.689087,4.441041,12.508813,2.81664,4.895,28.24090821,107.8,21.532055,24.712421,24.372925,10.853263,12.336313,13.938645,80.876389,84.782242,86.070374
nyu491706,587731187797459266,321.06115518,1.22674017,2662,40,6,22,GALAXY,16.145124,3.286249E-3,15.22956,2.654824E-3,16.205805,8.430032E-3,15.331844,8.256353E-3,1682.38538,1175.30688,7.068238,22.109407,3.127994,4.895,28.24090821,107.8,29.358606,37.077106,40.11253,27.501602,30.667324,36.657562,27.193447,179.741791,18.671501
nyu491704,587731187797459204,321.05440749,1.1183717,2662,40,6,22,GALAXY,15.153328,2.39173E-3,14.253589,2.085429E-3,15.233141,0.016174,14.360866,0.01521,697.143311,1114.12317,9.196183,31.076633,3.379297,4.895,28.24090821,107.8,59.404953,74.924225,79.111176,34.412964,39.852909,47.221977,176.88147,178.862015,174.303421
nyu491703,587731187797459103,320.99902806,1.25293685,2662,40,6,22,GALAXY,15.571239,2.766606E-3,14.660186,2.296774E-3,15.683512,0.013361,14.76924,0.015565,1920.33679,610.504761,9.21117,29.696312,3.223946,4.895,28.24090821,107.8,43.344856,60.4114,71.365593,31.387123,41.054756,45.909447,150.561523,138.63414,136.056564
nyu489028,587731187283918989,14.38327841,0.7679652,2662,40,5,378,GALAXY,18.256451,8.111731E-3,17.344715,5.655414E-3,18.355799,0.029005,17.438282,0.01532,1328.62585,1402.66919,3.095895,8.361404,2.700803,4.725,28.29447987,107.8,12.725829,16.862133,17.736504,10.291918,13.675796,14.278809,59.14901,10.000299,36.670696
nyu489027,587731187283918988,14.38117734,0.76553466,2662,40,5,378,GALAXY,16.097206,3.428436E-3,15.187103,2.688928E-3,16.144009,0.014509,15.246545,0.014674,1306.53723,1383.578,9.250106,30.410818,3.287619,4.725,28.29447987,107.8,37.000195,50.137024,55.288574,28.834593,35.334381,41.102238,133.604446,135.400269,133.848755
nyu489026,587731187283918969,14.34959994,0.7898356,2662,40,5,378,GALAXY,17.383863,0.019233,16.51137,4.354838E-3,17.473469,0.020951,16.602118,0.017677,1527.44458,1096.4397,5.361713,16.413603,3.061261,4.725,28.29447987,107.8,23.014322,26.357389,30.38065,12.31896,15.938434,19.300079,165.21405,161.018295,168.670486
nyu489024,587731187283918951,14.30021472,0.79874235,2662,40,5,378,GALAXY,17.45409,5.519903E-3,16.558945,4.097154E-3,17.41506,0.01051,16.551487,8.14508E-3,1608.46069,647.477234,4.454782,15.107058,3.3912,4.725,28.29447987,107.8,18.80735,22.219728,24.293846,17.319393,20.470669,23.407587,35.320976,77.741776,60.379086
nyu489015,587731187283853450,14.10747959,0.68059949,2662,40,5,377,GALAXY,18.330887,8.82917E-3,17.456713,6.796555E-3,18.380795,0.013103,17.516457,0.010082,535.010498,257.020782,3.190114,9.227176,2.892428,4.725,28.29447974,107.8,11.256064,13.980465,16.015827,10.492295,13.227363,13.160955,94.018173,163.693634,159.049591
nyu489001,587731187283787947,14.04812515,0.68197657,2662,40,5,376,GALAXY,15.801217,3.24891E-3,14.923864,2.569204E-3,15.910215,7.540652E-3,15.062373,6.156512E-3,547.599854,1078.58655,11.328928,36.23098,3.198094,4.725,28.29447966,107.8,44.015892,55.342316,67.756012,31.758537,37.470882,44.503269,80.089645,86.089661,87.013252
nyu489000,587731187283787945,14.03856475,0.68703238,2662,40,5,376,GALAXY,16.203905,3.476612E-3,15.304181,2.739432E-3,16.276342,8.158741E-3,15.391471,6.520419E-3,593.563171,991.670288,7.306524,24.156599,3.306168,4.725,28.29447966,107.8,30.737522,39.44384,44.785908,28.860298,33.739689,37.75005,60.82798,55.78064,37.434483
nyu488992,587731187283787896,13.97777948,0.65808892,2662,40,5,376,GALAXY,17.683298,6.911463E-3,16.740776,4.791752E-3,17.778049,0.021345,16.820185,0.015361,330.553558,439.224121,5.151373,15.152252,2.941401,4.725,28.29447966,107.8,16.287474,19.854145,20.664724,14.941617,17.876268,20.174006,89.083107,133.338547,1.99098
nyu488991,587731187283787895,13.98308029,0.66121635,2662,40,5,376,GALAXY,16.740391,5.246375E-3,15.678198,3.595863E-3,17.05484,0.71126,16.067537,0.678164,358.967987,487.397095,7.758734,24.602737,3.170973,4.725,28.29447966,107.8,63.069782,76.878326,75.912689,9.970912,12.368135,14.382547,66.386131,66.399017,65.672981
nyu488990,587731187283787881,13.96416959,0.7855672,2662,40,5,376,GALAXY,16.567297,4.61355E-3,15.613154,3.351365E-3,16.732893,0.015631,15.7999,0.015459,1489.28857,315.106842,9.459971,27.613829,2.919018,4.725,28.29447966,107.8,38.360607,44.728962,49.243668,17.104706,21.106756,24.604179,89.940575,91.443993,91.005684
nyu488984,587731187283787837,13.94328643,0.64505918,2662,40,5,376,GALAXY,15.436632,2.767699E-3,14.500394,2.230172E-3,15.572706,7.183427E-3,14.623489,6.97215E-3,212.179596,125.721947,10.998775,34.500568,3.136765,4.725,28.29447966,107.8,40.846748,50.471603,54.740074,36.75119,43.995598,50.559052,24.322575,9.514789,3.456672
nyu488933,587731187283394709,13.12680491,0.68925163,2662,40,5,370,GALAXY,17.782627,7.451703E-3,16.92379,6.168027E-3,17.877689,0.010572,17.054482,7.952172E-3,613.294739,869.254456,4.048491,11.330765,2.798763,4.725,28.29447948,161.7,14.355377,19.327497,23.016476,14.19521,15.751824,17.083132,164.953995,111.005157,84.579979
nyu488929,587731187283394681,13.09563268,0.66739524,2662,40,5,370,GALAXY,16.757864,4.240187E-3,15.907476,3.33039E-3,16.880838,8.103376E-3,16.042818,7.201553E-3,414.625305,585.935791,5.406234,16.795752,3.106738,4.725,28.29447948,161.7,24.671556,31.807831,34.985352,19.46291,23.020784,26.18342,163.687317,169.253906,177.783691
nyu488927,587731187283394600,13.10725495,0.71178723,2662,40,5,370,GALAXY,16.885784,4.484528E-3,16.070156,3.566719E-3,17.026649,7.193367E-3,16.232124,5.471425E-3,818.141785,691.461365,5.334998,14.092086,2.641442,4.725,28.29447948,161.7,22.695147,25.286097,27.56917,13.78345,16.349461,17.291817,23.312828,21.888363,21.316271
nyu488919,587731187283263699,12.85942297,0.65198846,2662,40,5,368,GALAXY,16.480251,3.985078E-3,15.515025,3.012402E-3,16.621584,9.637412E-3,15.702546,9.294057E-3,274.534668,1160.84033,6.892397,21.180317,3.072997,4.725,28.29447938,161.7,34.734142,45.533688,48.615448,18.529518,20.998444,24.287785,1.000084,1.421449,2.716512
nyu488912,587731187283198130,12.7319194,0.65074569,2662,40,5,367,GALAXY,16.570168,4.004379E-3,15.6596,3.116542E-3,16.570301,0.01418,15.702622,0.013641,263.288361,1362.90369,7.286724,25.019623,3.43359,4.725,28.2944793,161.7,32.619118,41.614094,45.665451,22.773848,28.412741,29.711231,51.454063,52.253326,44.448269
nyu488873,587731187282935941,12.09097338,0.65772278,2662,40,5,363,GALAXY,17.249706,5.147879E-3,16.418966,3.982296E-3,17.331957,0.01051,16.510725,7.550031E-3,326.997925,980.456848,4.686125,13.173285,2.811126,4.725,28.29447908,107.8,15.904556,19.331242,20.757984,15.682991,17.209681,18.666248,116.90081,0.15448,86.63884
nyu488851,587731187282804756,11.70755232,0.69630918,2662,40,5,361,GALAXY,15.955626,3.059269E-3,15.103053,2.559513E-3,16.1164,0.012136,15.279894,0.011846,677.583252,216.856918,5.800427,18.705057,3.224772,4.725,28.29447902,107.8,36.86179,45.145626,50.245838,28.749582,34.893097,37.623802,157.643921,152.718277,148.287354
nyu488575,587731187279921174,5.11463818,0.83355442,2662,40,5,317,GALAXY,14.361177,1.999081E-3,13.509833,1.806567E-3,14.43364,7.317247E-3,13.599295,8.30504E-3,1924.8252,167.258636,12.65614,41.655987,3.291366,4.725,28.29447702,107.8,69.686104,80.464325,83.51429,47.668713,57.38208,62.657192,132.227127,129.461609,126.501541
nyu488534,587731187279659153,4.61351316,0.63363745,2662,40,5,313,GALAXY,16.100483,3.227481E-3,15.252993,2.680766E-3,16.206413,0.01044,15.339521,0.010527,107.994408,1056.59998,5.91355,18.664799,3.156276,4.725,28.29447682,161.7,31.309315,37.436707,39.604805,18.755119,21.875881,26.509169,159.655136,156.725403,157.906952
nyu488516,587731187279593490,4.39362047,0.74304794,2662,40,5,312,GALAXY,15.675244,2.805766E-3,14.808468,2.376221E-3,15.761875,8.669041E-3,14.911786,8.413207E-3,1102.37036,418.136047,7.472299,25.17046,3.368503,4.725,28.29447678,161.7,40.309006,52.980804,58.106964,32.805992,40.854961,46.424469,120.666512,124.680237,120.469322
nyu488499,587731187279462454,4.19587098,0.70427613,2662,40,5,310,GALAXY,14.880135,2.354307E-3,14.018535,2.019317E-3,15.004079,3.24759E-3,14.158527,2.813436E-3,749.788696,1342.49707,15.015595,44.119843,2.938268,4.725,28.29447673,107.8,56.424049,70.777,79.339928,44.197689,52.805641,55.133186,175.357483,171.616531,172.161102
nyu488477,587731187279265955,3.70618353,0.68495491,2662,40,5,307,GALAXY,16.638329,4.383674E-3,15.791414,3.392413E-3,16.658722,0.013266,15.822368,0.012133,574.308777,974.124451,9.12211,29.81551,3.268488,4.725,28.29447657,107.8,34.928219,43.743095,50.174526,21.338633,26.754572,29.248894,125.30484,129.039444,129.316544
nyu488462,587731187279134919,3.37760419,0.67847495,2662,40,5,305,GALAXY,16.721207,4.634892E-3,15.742415,3.407547E-3,16.919399,0.031047,15.998735,0.023327,515.340271,709.130432,7.063071,19.872463,2.813573,4.725,28.2944765,107.8,43.514893,54.380241,62.325172,10.990985,12.836868,13.838593,112.493553,112.068428,112.415993
nyu488442,587731187279069315,3.3008342,0.74293905,2662,40,5,304,GALAXY,15.417989,2.646428E-3,14.55965,2.241092E-3,15.515351,3.747967E-3,14.669494,3.309413E-3,1101.34766,1371.95532,9.586722,31.277411,3.262576,4.725,28.29447645,107.8,41.199295,48.719082,52.917324,37.90633,48.146023,50.879536,19.318983,15.753239,26.992613
nyu488428,587731187278938322,2.94984995,0.83470061,2662,40,5,302,GALAXY,17.437902,6.266562E-3,16.440321,4.400447E-3,17.514166,0.021767,16.593008,0.015713,1935.04846,903.041321,5.85804,15.855842,2.70668,4.725,28.29447641,107.8,19.627741,21.633368,24.620476,14.058747,19.561657,21.431787,115.815041,111.570198,117.751091
nyu488388,587731187278676113,2.29855763,0.6562251,2662,40,5,298,GALAXY,16.685236,4.119046E-3,15.865742,3.310747E-3,16.741772,8.385306E-3,15.944715,7.811994E-3,312.506775,427.04715,6.069058,20.049168,3.303506,4.725,28.29447629,107.8,25.343813,30.364342,34.340546,22.609997,28.812563,30.203558,3.57031,38.546402,56.194153
nyu488375,587731187278610557,2.16764354,0.66696544,2662,40,5,297,GALAXY,17.275293,6.091778E-3,16.523285,4.821741E-3,17.348536,0.012653,16.563465,9.817072E-3,410.011536,597.845032,8.23034,22.4692,2.730045,4.725,28.29447627,161.7,20.717451,26.273209,27.39435,19.36833,22.895954,24.22846,21.887182,166.525162,153.937042
nyu488349,587731187278479502,1.86852318,0.77706469,2662,40,5,295,GALAXY,17.599937,6.219503E-3,16.701782,4.586393E-3,17.713747,0.010255,16.831104,7.604718E-3,1410.80701,600.160156,4.525278,12.780585,2.824265,4.725,28.2944762,107.8,16.3985,20.414803,24.586029,12.543652,16.256342,18.217409,49.886032,48.843113,34.556839
nyu488280,587731187278086334,1.0421628,0.67019918,2662,40,5,289,GALAXY,17.394165,5.671361E-3,16.474253,4.204924E-3,17.455793,9.615053E-3,16.561398,7.803904E-3,439.560486,1254.48071,5.433575,16.67864,3.069552,4.725,28.29447588,107.8,18.323027,26.840385,31.182188,15.239006,20.557182,23.980478,108.058891,101.31398,103.47525
nyu488228,587731187277889699,0.51506238,0.63185301,2662,40,5,286,GALAXY,16.747948,4.650336E-3,15.779137,3.397449E-3,16.880325,0.010736,15.948089,8.207731E-3,91.228523,545.62854,7.415047,22.904825,3.088966,4.725,28.29447569,107.8,25.362896,33.518551,38.485474,21.467531,27.231361,33.399689,142.387436,137.704102,150.398254
nyu488145,587731187277627574,359.92199472,0.6371444,2662,40,5,282,GALAXY,16.679062,4.423094E-3,15.735151,3.266059E-3,16.711491,8.613475E-3,15.798711,6.247382E-3,139.099426,597.764038,8.021032,26.471674,3.300282,4.725,28.29447554,107.8,27.152397,33.68681,40.647217,25.39806,32.366745,35.787785,179.873489,44.976269,42.912884
nyu488122,587731187277561963,359.76793406,0.81406738,2662,40,5,281,GALAXY,17.711605,8.823226E-3,16.764956,6.042926E-3,17.966499,0.016405,17.075375,0.011688,1747.14246,557.601379,6.50459,17.12751,2.633142,4.725,28.29447553,107.8,19.228817,22.925661,25.370237,12.705679,15.27546,17.44335,139.140152,131.460159,144.811615
nyu488108,587731187277496445,359.60527242,0.72428867,2662,40,5,280,GALAXY,17.827261,6.329006E-3,16.940891,4.851914E-3,17.863668,0.01738,16.988152,0.015569,931.102356,440.30368,3.092659,9.938275,3.213506,4.725,28.29447545,107.8,20.154781,22.582628,-9999,10.258975,12.955009,-9999,102.998299,103.17244,-9999
nyu488098,587731187277430934,359.50932294,0.69085854,2662,40,5,279,GALAXY,17.630486,6.145254E-3,16.747549,4.596293E-3,17.706636,8.872214E-3,16.839005,6.467688E-3,627.191956,929.143127,3.561687,10.266511,2.882486,4.725,28.29447543,107.8,17.17458,17.803452,19.153425,10.434183,12.618838,14.096464,109.895432,104.267891,108.254868
nyu488097,587731187277430908,359.49936934,0.7690692,2662,40,5,279,GALAXY,16.145504,3.392843E-3,15.21112,2.702677E-3,16.043215,0.019935,15.107486,0.019982,1338.14844,838.401489,10.413638,38.734058,3.719551,4.725,28.29447543,107.8,40.61676,54.747704,61.19714,31.130651,43.651051,47.174534,126.827301,131.239426,119.841797
nyu488092,587731187277430877,359.43226384,0.65517493,2662,40,5,279,GALAXY,15.430779,2.905013E-3,14.589071,2.474941E-3,15.518753,0.033049,14.745817,0.02536,302.816467,228.772827,12.698115,38.623432,3.041667,4.725,28.29447543,107.8,76.360413,81.357468,79.126793,20.343885,23.788626,28.790548,134.417099,135.720367,136.520172
nyu488089,587731187277430803,359.45240677,0.79557851,2662,40,5,279,GALAXY,15.505863,2.76945E-3,14.605874,2.282809E-3,15.627563,8.291593E-3,14.729622,8.094034E-3,1579.04541,411.411163,9.813379,32.75486,3.337776,4.725,28.29447543,107.8,44.80172,55.159851,66.719376,36.049767,46.501099,52.937935,117.560333,126.910606,118.852997
nyu488083,587731187277365435,359.40159279,0.81126179,2662,40,5,278,GALAXY,17.575138,7.311167E-3,16.516348,4.827567E-3,17.752182,0.036372,16.777462,0.031564,1721.51367,1310.42944,5.918612,18.092886,3.056948,4.725,28.29447532,107.8,26.999819,35.182304,40.650459,10.065696,12.251935,13.471517,39.314461,41.953163,42.561348
nyu488062,587731187277299907,359.22252131,0.6867628,2662,40,5,277,GALAXY,17.69356,6.467449E-3,16.756077,4.632893E-3,17.757746,0.014618,16.840219,0.018797,589.835632,1044.03076,4.329968,13.841955,3.19678,4.725,28.29447524,107.8,17.477219,24.192392,28.761902,14.153163,18.595694,21.717453,163.486526,170.29837,158.537445
nyu488058,587731187277299818,359.20543685,0.72695183,2662,40,5,277,GALAXY,17.462639,5.62957E-3,16.489239,4.057375E-3,17.560856,0.011243,16.596367,0.010104,955.173767,888.59259,4.232999,12.33793,2.914701,4.725,28.29447524,107.8,16.869898,21.125225,24.581121,13.049953,18.665466,20.52828,122.541634,123.680199,150.511703
nyu487796,587731187275137185,354.2723716,0.66453899,2662,40,5,244,GALAXY,17.507261,6.076564E-3,16.650116,4.566577E-3,17.656033,0.049038,16.797693,0.043568,387.268799,956.720703,4.873047,15.208385,3.120919,4.725,28.29447381,107.8,25.043468,33.460911,32.974396,8.395761,9.472349,10.715561,30.314306,29.113607,29.104519
nyu487793,587731187275137138,354.21174753,0.65517415,2662,40,5,244,GALAXY,17.213076,5.085693E-3,16.295931,3.799537E-3,17.300156,8.245454E-3,16.381451,6.170584E-3,302.108093,405.643372,4.662819,14.62172,3.135811,4.725,28.29447381,107.8,18.443672,22.814842,25.741642,17.168449,21.76404,24.893608,103.397453,67.900558,59.938896
nyu487768,587731187274875074,353.63147618,0.82713918,2662,40,5,240,GALAXY,17.846189,6.619016E-3,17.032999,5.112389E-3,17.942665,0.029221,17.13592,0.023502,1865.24597,573.496399,3.971788,11.211231,2.822716,4.725,28.29447351,107.8,20.313532,21.272596,24.215128,6.228664,7.853295,8.19178,153.337753,156.439056,153.227585
nyu487655,587731187273564379,350.68969312,0.67046222,2662,40,5,220,GALAXY,16.921602,5.056494E-3,16.010466,3.780482E-3,16.919056,9.796088E-3,16.043364,7.321701E-3,440.71817,1050.84387,9.04987,28.215481,3.117778,4.725,28.29447238,107.8,25.089697,32.989471,38.13129,24.059023,29.171242,34.673359,93.967407,59.17181,93.682869
nyu487542,587731187271991503,347.07319152,0.74372363,2662,40,5,196,GALAXY,17.678143,6.257426E-3,16.740221,4.539103E-3,17.606049,0.011837,16.710817,8.508844E-3,1106.07898,837.407776,5.05048,16.623232,3.291416,4.725,28.29447085,107.8,17.030449,21.831461,26.122353,16.394705,20.284241,24.810369,116.71209,60.395412,79.965279
nyu487517,587731187271663850,346.37899019,0.82232034,2662,40,5,191,GALAXY,16.877398,5.417201E-3,15.927881,3.880191E-3,16.934298,0.017918,16.06447,0.01331,1820.52087,1331.24915,9.963306,31.23761,3.135265,4.725,28.29447067,107.8,34.301888,43.359562,42.481369,18.315222,22.998974,27.976774,99.78437,102.702209,100.736717
nyu487511,587731187271663782,346.28184167,0.8262528,2662,40,5,191,GALAXY,16.77709,4.087378E-3,15.899774,3.235126E-3,16.875387,0.012899,16.005169,0.011363,1856.16968,448.190033,4.328958,13.896675,3.210167,4.725,28.29447067,107.8,34.382252,54.585266,56.207561,19.087078,22.470856,27.00948,88.567314,91.887276,88.684906
nyu487510,587731187271663775,346.27887652,0.81190433,2662,40,5,191,GALAXY,17.133604,5.614022E-3,16.092724,3.901647E-3,17.20525,0.030461,16.240017,0.017395,1725.81702,421.290741,7.888253,24.106323,3.055978,4.725,28.29447067,107.8,40.192024,41.425251,47.405285,10.477707,13.961308,14.132808,116.78009,117.583847,118.538002
nyu487508,587731187271663764,346.26308779,0.79545628,2662,40,5,191,GALAXY,17.672281,6.985749E-3,16.738749,5.355216E-3,17.784147,0.01317,16.879499,8.798569E-3,1576.3551,277.839905,4.761543,13.177698,2.767527,4.725,28.29447067,107.8,20.283297,22.497316,26.511114,10.510174,12.481644,13.516068,178.560028,175.664948,174.794083
nyu487434,587731187270549666,343.775463,0.74413792,2662,40,5,174,GALAXY,17.865711,7.382096E-3,16.920971,5.286099E-3,17.933176,0.011298,17.02994,8.451388E-3,1110.3811,800.344238,4.089598,11.758283,2.875169,4.725,28.29446987,107.8,16.076197,19.988079,22.12743,11.231721,12.808713,13.924944,155.148529,156.083466,158.380981
nyu487360,587731187269959840,342.3494913,0.83519482,2662,40,5,165,GALAXY,17.601122,5.496841E-3,16.607025,4.27086E-3,17.642584,7.449538E-3,16.668703,5.756973E-3,1938.09375,85.87674,2.870505,7.519772,2.619669,4.725,28.29446931,107.8,12.779848,16.679333,-9999,10.68424,13.83711,-9999,106.496498,114.526352,-9999
nyu487340,587731187269632144,341.60053644,0.77347704,2662,40,5,160,GALAXY,16.006241,3.245394E-3,14.984731,2.506179E-3,16.072418,0.018047,15.096821,0.016848,1377.59204,82.436829,8.177661,27.168541,3.322287,4.725,28.29446883,107.8,42.462337,53.140934,61.172523,26.00749,33.441147,37.196308,118.304207,121.996407,124.093437
nyu487322,587731187269435531,341.15689346,0.79773389,2662,40,5,157,GALAXY,17.700409,6.509865E-3,16.838894,5.112968E-3,17.780817,9.957606E-3,16.916039,7.71044E-3,1597.66577,132.746262,4.248813,12.254101,2.884124,4.725,28.2944686,107.8,15.775445,19.911476,21.538523,12.037322,13.597565,14.458198,149.212051,146.432541,146.254807
nyu487316,587731187269369991,341.00541901,0.75262183,2662,40,5,156,GALAXY,16.747431,5.511292E-3,15.773569,4.787473E-3,16.702822,7.956745E-3,15.736336,4.595015E-3,1187.87451,116.445419,7.24056,25.850197,3.570193,4.725,28.29446854,107.8,34.031281,39.595291,42.268063,20.151865,23.456427,25.727934,140.882996,143.64682,142.838257
nyu487266,587731187268911276,340.00962091,0.70626596,2662,40,5,149,GALAXY,17.656494,5.825975E-3,16.684637,4.243807E-3,17.782085,0.016477,16.808418,0.016818,766.648193,590.66095,3.337234,9.452373,2.832397,4.725,28.29446794,107.8,24.001917,29.666786,35.809978,7.047436,9.663449,11.171328,168.471848,171.349701,169.227081
nyu487202,587731187268321468,338.60501041,0.6342355,2662,40,5,140,GALAXY,16.714539,5.428305E-3,15.835512,3.55623E-3,16.611324,0.016831,15.789778,9.626802E-3,112.017937,70.834335,10.571353,27.527321,2.603954,4.725,28.29446717,107.8,40.372047,48.530479,51.202503,16.769854,19.305105,22.436539,76.556023,77.57193,77.025352
nyu487184,587731187268190457,338.39900081,0.69693153,2662,40,5,138,GALAXY,17.146387,4.87386E-3,16.159292,3.561576E-3,17.130455,0.04642,16.171494,0.040545,681.85614,919.742371,5.074879,17.617302,3.471473,4.725,28.29446704,107.8,28.239418,30.04534,34.271046,11.380048,15.873598,18.850714,81.49575,77.783943,81.697441
nyu487166,587731187268124950,338.2350104,0.78064893,2662,40,5,137,GALAXY,17.689016,7.45315E-3,16.693342,5.394931E-3,17.780285,0.015394,16.869247,0.010339,1442.73547,789.601807,5.103178,14.165144,2.775749,4.725,28.29446694,107.8,21.86821,23.800228,27.84112,10.826116,12.683799,14.773134,159.491913,159.746689,158.680939
nyu487152,587731187268059237,338.13063539,0.68759501,2662,40,5,136,GALAXY,16.033482,3.302646E-3,15.089458,2.614294E-3,16.095846,0.036438,15.172817,0.030314,596.836853,1202.03015,8.489202,28.140409,3.314847,4.725,28.2944669,107.8,45.243076,52.666275,59.796303,20.58984,27.583176,31.124666,87.693504,84.42189,86.62561
nyu487074,587731187267469609,336.76769716,0.7548565,2662,40,5,127,GALAXY,15.928063,3.29231E-3,14.891187,2.484067E-3,16.011086,0.012105,15.027727,0.010289,1208.55969,1060.43384,10.00652,31.624403,3.160379,4.725,28.29446607,107.8,44.302414,55.793869,60.897202,25.926851,32.630165,36.398643,47.250324,45.817093,45.773426
nyu487073,587731187267469597,336.75435163,0.69666275,2662,40,5,127,GALAXY,17.858578,9.464134E-3,17.003752,5.699393E-3,17.78628,0.028313,16.996258,0.017963,679.539001,939.310486,6.324444,17.14723,2.711263,4.725,28.29446607,107.8,29.489527,31.068975,33.787048,7.280037,8.361611,9.463765,1.469445,4.072745,3.488448
nyu487061,587731187267403900,336.57563645,0.73948054,2662,40,5,126,GALAXY,17.454073,5.710934E-3,16.549238,4.198582E-3,17.560524,0.010268,16.658239,9.95629E-3,1068.44482,675.526245,4.597174,13.447883,2.92525,4.725,28.29446604,107.8,20.662872,24.157726,24.869204,9.771864,11.657011,12.675609,86.382065,86.457481,89.373123
nyu487057,587731187267338622,336.50732123,0.68100014,2662,40,5,125,GALAXY,16.371012,4.678846E-3,15.349235,4.114951E-3,16.509443,0.035953,15.489344,0.034655,536.619141,1415.71643,5.381152,17.119057,3.181299,4.725,28.29446601,107.8,34.698696,39.885632,44.380299,16.128839,21.955746,25.741962,61.378342,59.870918,57.332153
nyu486889,587731187266158887,333.75158035,0.8040649,2662,40,5,107,GALAXY,17.188951,5.322928E-3,16.135754,3.752247E-3,17.107788,0.053762,16.112307,0.045137,1655.67859,861.052185,6.860633,19.879282,2.897587,4.725,28.29446504,107.8,45.504688,55.369331,63.359089,10.910379,13.011189,14.081502,138.2854,139.532883,139.899841
nyu486767,587731187264979243,331.10546348,0.71541504,2662,40,5,89,GALAXY,14.995296,2.317247E-3,14.107676,2.026092E-3,15.069999,0.020819,14.199491,0.020258,849.736328,1303.05188,9.319836,31.931257,3.426161,4.725,28.29446425,107.8,54.090576,62.193581,67.037537,37.056374,46.008663,52.467155,173.603516,169.483841,174.748245
nyu486614,587731187263602697,327.82752977,0.8017882,2662,40,5,68,GALAXY,18.357616,7.991717E-3,17.435709,5.806349E-3,18.385931,0.013102,17.472988,0.101173,1635.27344,83.503723,2.977442,8.59309,2.886065,4.725,28.29446323,107.8,12.421717,15.551692,28.833023,7.642518,10.365555,12.386728,140.482697,155.927216,15.579248
nyu486568,587731187531579786,326.89524529,0.77321106,2662,40,5,61,GALAXY,16.424484,4.049386E-3,15.364075,2.913443E-3,16.481079,9.645934E-3,15.43458,8.318925E-3,1375.47925,1134.47583,9.970963,31.888689,3.198155,4.725,28.29446295,107.8,33.272045,45.639816,52.585361,25.643942,32.762272,40.205456,13.470285,6.415387,2.695029
nyu486565,587731187531579710,326.85447369,0.83223072,2662,40,5,61,GALAXY,17.563007,8.295371E-3,16.423174,5.177692E-3,17.791872,0.237772,16.714195,0.175036,1911.74744,763.696594,7.195826,24.615633,3.420821,4.725,28.29446295,107.8,35.754749,47.271774,45.234222,8.406204,9.579516,13.026029,177.271133,0.067229,176.880661
nyu486544,587731187263078735,326.68190824,0.67167158,2662,40,5,60,GALAXY,17.208883,5.468694E-3,16.218498,4.043056E-3,17.270189,0.010699,16.305304,8.241622E-3,452.432281,556.890869,5.406565,16.757435,3.099461,4.725,28.29446285,107.8,24.794792,26.730249,31.335579,13.348963,17.578957,19.642595,75.757256,78.395538,75.930183
nyu486448,587731187262160959,324.55579853,0.7355924,2662,40,5,46,GALAXY,18.106699,8.9127E-3,17.24052,6.468345E-3,18.037146,0.023854,17.182871,0.022867,1033.4176,282.474609,6.814482,22.370073,3.282726,4.725,28.29446155,107.8,23.760321,32.169849,34.274738,10.328993,13.550667,16.430754,179.427704,5.466842,4.964099
nyu486444,587731187262095956,324.51466435,0.63725805,2662,40,5,45,GALAXY,17.957838,7.058042E-3,17.124142,5.351775E-3,18.091116,0.013176,17.276266,0.011795,139.629395,1269.94995,3.424487,9.193987,2.684778,4.725,28.29446143,107.8,15.780755,19.734959,18.956127,7.471891,8.504259,8.958277,94.710388,96.896149,94.027168
nyu486417,587731187261964310,324.08568249,0.72068001,2662,40,5,43,GALAXY,16.506361,3.851814E-3,15.535374,2.965197E-3,16.521772,0.011687,15.585137,0.010808,897.722961,91.681648,6.944155,23.558651,3.392587,4.725,28.2944613,107.8,32.446999,45.546021,50.065815,23.121658,30.210592,33.743359,127.574959,131.181198,139.770432
nyu486320,587731187261243995,322.56215758,0.68610118,2662,40,5,32,GALAXY,17.29405,5.521283E-3,16.419291,4.191488E-3,17.330885,0.010354,16.463961,8.706831E-3,583.643555,1211.88452,5.903327,18.740763,3.17461,4.725,28.29446033,161.7,20.47242,28.886284,33.965607,17.157806,21.552401,26.017677,14.674804,10.854538,18.194593
nyu483309,587731186747244662,14.70378364,0.36643863,2662,40,4,381,GALAXY,17.209528,5.664141E-3,16.239038,5.706809E-3,17.300089,0.036733,16.354626,0.035991,1493.14392,232.854034,4.119881,13.495849,3.275786,4.76,28.24781962,107.8,28.155523,33.357605,37.194679,11.692001,15.571773,17.308886,135.32222,133.921112,132.764969
nyu483265,587731186746982584,14.21090598,0.34642125,2662,40,4,377,GALAXY,15.477822,2.779427E-3,14.616932,2.370526E-3,15.609641,0.01472,14.760855,0.014183,1311.41003,1196.05176,11.262479,33.45137,2.97016,4.76,28.24781945,107.8,53.056442,68.704193,74.157799,27.003223,30.952766,34.706333,34.170807,35.044945,35.55687
nyu483260,587731186746982513,14.09891411,0.27834685,2662,40,4,377,GALAXY,17.207001,5.830607E-3,16.324783,4.958593E-3,17.1726,0.026652,16.322731,0.01682,692.727539,178.341736,9.028462,23.893892,2.646507,4.76,28.24781945,107.8,37.299011,43.052513,48.288479,11.505193,13.332788,14.194707,13.066773,11.469019,9.229598
nyu483250,587731186746916896,14.00774322,0.2536613,2662,40,4,376,GALAXY,16.894176,4.463796E-3,16.062567,3.631783E-3,16.892803,0.017613,16.097757,0.015146,468.401367,710.731689,6.467235,22.076263,3.413555,4.76,28.24781928,107.8,30.958935,37.743988,40.603165,19.915277,25.82362,30.176582,130.100006,126.631363,136.134506
nyu483231,587731186746785896,13.6953729,0.33653116,2662,40,4,374,GALAXY,16.785316,4.118142E-3,15.887296,3.306946E-3,16.893072,6.616755E-3,15.998289,5.532759E-3,1221.76135,593.001404,5.264398,16.110142,3.060206,4.76,28.2478192,107.8,24.998692,31.391659,37.739288,17.978117,23.497917,25.553286,9.113725,11.637601,10.324677
nyu483193,587731186746523788,13.11899457,0.37578231,2662,40,4,370,GALAXY,17.470951,5.064223E-3,16.60817,4.100555E-3,17.529415,0.016891,16.691511,0.014515,1578.37915,797.389404,3.017678,8.222728,2.724853,4.76,28.24781908,107.8,18.51457,18.920561,21.126646,12.43036,15.371845,18.725796,105.111572,112.979568,128.606232
nyu483039,587731186745475262,10.69500062,0.30046697,2662,40,4,354,GALAXY,16.59988,3.943513E-3,15.734597,3.232029E-3,16.661066,6.260806E-3,15.820588,5.151745E-3,893.628479,538.137878,6.936107,20.108009,2.899034,4.76,28.24781853,107.8,26.026262,30.42227,32.407059,21.257982,25.95763,28.688799,60.606041,64.340141,61.278709
nyu483028,587731186745344147,10.40472421,0.39202215,2662,40,4,352,GALAXY,18.239643,7.74035E-3,17.339647,6.044429E-3,18.290003,0.016372,17.424068,0.013325,1726.13794,621.231262,3.294049,9.212195,2.796618,4.76,28.2478184,107.8,16.083651,17.820944,18.870308,7.588988,8.53701,9.686836,123.666473,127.087517,125.203293
nyu482984,587731186745016439,9.73579295,0.29923662,2662,40,4,347,GALAXY,16.092325,4.389329E-3,15.271596,4.08498E-3,16.190718,7.517218E-3,15.370535,6.841872E-3,882.486938,1345.47681,5.548807,16.700855,3.00981,4.76,28.24781818,107.8,29.71887,34.722233,37.693462,17.336342,19.640654,22.048073,54.345322,53.582077,53.556908
nyu482945,587731186744754270,9.0575718,0.31036231,2662,40,4,343,GALAXY,17.623011,5.971166E-3,16.759972,4.70278E-3,17.72654,0.018869,16.913286,0.016427,983.56189,624.084961,4.181901,11.524246,2.755744,4.76,28.24781802,107.8,20.710966,23.471788,26.602901,10.147185,12.183307,11.938004,168.153854,168.90625,165.626816
nyu482836,587731186744033284,7.35050987,0.31578024,2662,40,4,332,GALAXY,16.459332,4.610411E-3,15.530066,3.582727E-3,16.666656,0.068824,15.823374,0.039085,1032.75159,76.673096,10.390769,31.844606,3.064702,4.76,28.24781744,107.8,64.269371,57.142956,50.471085,11.508487,16.390636,22.47097,112.198509,114.199631,116.311813
nyu482822,587731186743967777,7.25618073,0.35082888,2662,40,4,331,GALAXY,15.791967,2.932423E-3,14.911309,2.469394E-3,15.794086,5.677345E-3,14.938061,5.206644E-3,1351.46704,580.112183,10.05698,35.102764,3.490388,4.76,28.24781733,107.8,39.774498,49.78651,54.982914,36.224167,46.994953,52.557564,17.700855,24.471954,24.707798
nyu482724,587731186743312500,5.73436609,0.41892016,2662,40,4,321,GALAXY,17.517868,6.419325E-3,16.670912,4.980032E-3,17.691097,0.031575,16.870956,0.031066,1970.47632,356.44986,5.42779,16.310595,3.005016,4.76,28.24781679,107.8,28.312477,34.827,36.610424,10.439992,12.679532,13.287069,96.721657,95.233948,95.546219
nyu482500,587731186741870756,2.49968789,0.34685018,2662,40,4,299,GALAXY,18.135637,9.705511E-3,17.220831,7.188299E-3,17.818007,0.034609,16.945328,0.034524,1315.04761,893.710083,12.242329,47.554451,3.884429,4.76,28.24781597,107.8,17.100294,27.626141,31.988462,14.164347,17.66017,22.282265,171.631821,154.232895,144.400558
nyu482354,587731186741149828,0.81464978,0.27927444,2662,40,4,288,GALAXY,18.436708,9.04885E-3,17.469116,6.551868E-3,18.349979,0.033065,17.475019,0.025348,700.519958,546.248535,4.146972,13.708676,3.305707,4.76,28.24781536,107.8,17.32728,20.996269,25.808628,8.876009,15.011162,15.427241,75.64064,67.9879,91.051659
nyu482197,587731186740166757,358.55743763,0.35694492,2662,40,4,273,GALAXY,15.975783,2.952868E-3,15.132623,2.578094E-3,16.064224,3.402375E-3,15.236151,3.050308E-3,1406.29614,441.13916,4.763351,13.320285,2.796411,4.76,28.24781453,107.8,24.23741,30.436369,36.319614,19.082308,22.390242,24.144764,148.912262,150.312973,147.60994
nyu482195,587731186740166691,358.54200103,0.38286071,2662,40,4,273,GALAXY,13.785918,1.858692E-3,12.89477,1.724688E-3,13.873142,0.038304,12.979025,0.03847,1641.87,300.750122,17.707508,53.878902,3.042715,4.76,28.24781453,107.8,109.368088,129.921997,135.666794,49.634674,61.274513,68.078789,110.678596,111.365143,111.60392
nyu482194,587731186740166690,358.55031572,0.37702846,2662,40,4,273,GALAXY,14.828797,2.218778E-3,13.922801,2.003298E-3,15.017854,0.035363,14.123937,0.055963,1588.86316,376.345703,6.576992,21.230944,3.228063,4.76,28.24781453,107.8,64.717354,80.498497,83.306656,36.486767,43.552277,46.117592,138.785004,133.460602,133.936035
nyu482122,587731186739642493,357.35652446,0.4065493,2662,40,4,265,GALAXY,16.710312,4.196723E-3,15.750545,3.283145E-3,16.721334,9.472484E-3,15.759068,7.349288E-3,1857.3075,412.082764,7.29725,25.480227,3.491758,4.76,28.24781423,107.8,26.138206,36.263367,40.707867,24.709408,32.228626,37.013523,158.624313,151.166168,132.028732
nyu482119,588015509805072535,357.33197165,0.4199531,3325,41,5,90,GALAXY,17.268869,6.554943E-3,16.352047,4.562207E-3,17.405014,0.038551,16.529013,0.02915,111.578796,652.841187,6.213689,18.811771,3.027472,4.725,28.11734455,107.8,28.268089,32.259819,31.719387,11.927368,16.10523,20.046469,168.249161,161.450897,151.114868
nyu482062,587731186739118095,356.12533478,0.32047369,2662,40,4,257,GALAXY,14.650047,2.151376E-3,13.840906,1.989105E-3,14.678753,2.225589E-3,13.863098,1.880101E-3,1074.35339,107.83651,15.539099,49.330475,3.174603,4.76,28.247814,107.8,60.231445,-9999,-9999,55.019524,-9999,-9999,141.974228,-9999,-9999
nyu482057,587731186739052559,355.9831513,0.21808679,2662,40,4,256,GALAXY,15.502633,2.634379E-3,14.705451,2.385789E-3,15.61018,4.805266E-3,14.833039,4.17577E-3,143.662766,176.531006,6.73442,19.651308,2.91804,4.76,28.247814,107.8,36.156082,44.103615,47.709385,30.12941,36.376125,42.581543,100.220528,93.366478,97.200363
nyu482044,587731186738987133,355.86168122,0.36042875,2662,40,4,255,GALAXY,16.451942,3.802038E-3,15.480919,3.005999E-3,16.472719,6.387663E-3,15.554444,4.858732E-3,1437.71497,432.698364,8.371157,22.017883,2.630208,4.76,28.24781394,107.8,25.936914,30.919912,33.61042,24.634762,28.257763,31.064516,59.025021,36.087379,172.531128
nyu482030,587731186738856082,355.58998492,0.2441088,2662,40,4,253,GALAXY,16.980345,4.560025E-3,16.074974,3.605352E-3,16.990742,8.386773E-3,16.115967,7.426415E-3,379.941772,684.867737,6.03035,19.862701,3.293789,4.76,28.24781397,107.8,22.943222,29.732801,33.44746,20.598314,25.712606,30.685442,68.4151,49.22081,177.025208
nyu482018,587731186738790493,355.51345856,0.21057673,2662,40,4,252,GALAXY,17.120436,5.767238E-3,16.159363,4.33937E-3,17.284767,0.092491,16.367064,0.072658,75.173325,1350.34326,7.507137,23.059298,3.07165,4.76,28.24781394,107.8,32.375164,37.835583,36.339111,9.073089,11.689219,13.955679,148.540054,151.519821,148.366638
nyu481977,587731186738462908,354.64145873,0.2809328,2662,40,4,247,GALAXY,17.633633,5.559698E-3,16.715603,4.403291E-3,17.736603,0.028469,16.830643,0.025551,714.426636,227.929932,3.157252,9.193455,2.911853,4.76,28.24781377,107.8,18.959181,23.756903,23.973858,8.868591,10.787584,12.3146,93.673035,91.495049,90.081718
nyu481948,587731186738266354,354.30851451,0.40607223,2662,40,4,244,GALAXY,16.785011,4.2906E-3,15.823416,3.352719E-3,16.88673,0.044127,15.958456,0.039319,1852.23303,1284.2417,5.92675,19.607046,3.308229,4.76,28.24781356,107.8,32.564651,41.110996,47.750702,15.909328,21.509626,25.087105,146.716431,141.983383,139.361908
nyu481915,587731186738004125,353.6929591,0.38381258,2662,40,4,240,GALAXY,16.80916,4.061935E-3,15.876098,3.300238E-3,16.965559,0.192116,16.03573,0.181487,1650.08313,1132.10413,4.168543,13.593518,3.260976,4.76,28.24781332,107.8,36.549252,40.73484,41.256783,9.256984,12.639567,14.086664,32.497746,34.150261,33.55368
nyu481914,587731186738004089,353.62419986,0.38108706,2662,40,4,240,GALAXY,18.189991,7.416783E-3,17.329468,5.881584E-3,18.261293,0.010366,17.401836,7.873271E-3,1625.31262,507.060059,2.950871,7.938555,2.690241,4.76,28.24781332,107.8,10.715341,13.466357,15.229669,9.522183,11.823398,12.268224,50.819252,59.123608,5.367761
nyu481911,587731186738004065,353.59768648,0.2273936,2662,40,4,240,GALAXY,17.317856,5.313336E-3,16.41737,4.07741E-3,17.412809,0.01594,16.511509,0.014016,228.045227,266.466614,3.769069,11.084044,2.940791,4.76,28.24781332,107.8,21.432917,23.578625,25.000517,10.448376,13.709194,17.424692,38.266201,45.442223,42.315857
nyu481909,587731186738003987,353.60681284,0.23453998,2662,40,4,240,GALAXY,16.431957,3.728689E-3,15.510966,2.986246E-3,16.48764,6.606681E-3,15.583767,5.15119E-3,292.992706,349.412994,7.321752,23.88592,3.262323,4.76,28.24781332,107.8,28.781321,36.374489,43.298622,24.239662,30.27129,33.052113,73.42421,65.434814,60.901611
nyu481903,587731186737938593,353.51266044,0.36529503,2662,40,4,239,GALAXY,16.448812,3.777081E-3,15.487642,3.022395E-3,16.650057,0.027256,15.712892,0.021973,1481.68518,854.135742,5.891696,16.988911,2.883534,4.76,28.2478132,107.8,44.118908,56.542007,59.19841,12.575302,14.753672,17.000229,91.422005,90.111656,91.886543
nyu481828,587731186737217679,351.80256769,0.2163121,2662,40,4,228,GALAXY,16.809278,5.537792E-3,15.941344,5.611978E-3,16.86681,8.602403E-3,16.003702,7.247394E-3,126.979439,279.233734,6.362514,21.308336,3.349043,4.76,28.24781243,107.8,24.556459,30.591358,32.78038,21.782198,27.288239,29.978319,99.329895,111.244171,98.711914
nyu481818,587731186737021104,351.37541621,0.41643055,2662,40,4,225,GALAXY,17.375145,0.019345,16.436529,4.112648E-3,17.452251,0.025354,16.511127,0.020721,1945.91833,478.342407,3.201462,9.689667,3.026638,4.76,28.24781233,107.8,21.007162,26.300884,28.016523,11.435066,15.187536,18.60544,107.898903,108.465118,104.187752
nyu481803,587731186736890070,351.14061877,0.39856964,2662,40,4,223,GALAXY,18.162531,6.825344E-3,17.279387,5.417351E-3,18.20702,0.012167,17.344572,0.011333,1783.44641,1066.03613,2.593856,7.45304,2.873344,4.76,28.24781219,107.8,13.462696,17.379807,19.444082,7.910383,10.08755,9.871342,123.59568,124.490837,135.221558
nyu481790,587731186736824575,350.99471657,0.28140659,2662,40,4,222,GALAXY,17.585045,7.115556E-3,16.647671,5.008189E-3,17.76165,9.822851E-3,16.818596,7.539129E-3,718.167725,1101.08374,4.16014,11.484008,2.760486,4.76,28.24781207,107.8,14.877391,19.408598,21.682335,12.301574,15.637227,16.750652,67.182396,73.094101,73.70797
nyu481764,587731186736562183,350.28546138,0.40836717,2662,40,4,218,GALAXY,16.423862,3.51165E-3,15.552498,3.01858E-3,16.45155,0.040896,15.590818,0.036713,1872.49768,96.830315,4.745262,16.18856,3.411521,4.76,28.2478118,107.8,28.901125,31.935331,32.927937,17.059376,22.384998,24.628078,173.62471,175.503433,176.169586
nyu481759,587731186736496750,350.2800963,0.39986773,2662,40,4,217,GALAXY,15.230844,2.452991E-3,14.327231,2.136851E-3,15.516688,0.119474,14.212608,0.101126,1795.25549,1409.01453,12.54987,90.519539,7.212786,4.76,28.24781177,107.8,-9999,53.784943,58.213196,-9999,46.023521,47.453533,-9999,167.090103,172.732925
nyu481738,587731186736300210,349.75459632,0.28105857,2662,40,4,214,GALAXY,17.224089,5.110973E-3,16.272833,3.910378E-3,17.291676,0.017043,16.34506,0.016922,715.098511,715.228149,5.374816,17.659718,3.285641,4.76,28.24781154,107.8,25.408899,31.617197,33.688812,14.183468,20.743412,23.127457,63.922878,64.308128,70.919395
nyu481637,587731186734989495,346.76438071,0.34965002,2662,40,4,194,GALAXY,17.797802,0.01085,16.946989,8.336786E-3,17.767355,0.021896,16.94417,0.0513,1338.33618,751.404907,10.339331,27.510597,2.660772,4.76,28.24781042,107.8,40.853207,39.297287,46.230621,7.226826,8.953705,9.932966,88.492432,89.39579,86.133873
nyu481630,587731186734858467,346.5038826,0.31123844,2662,40,4,192,GALAXY,18.173605,7.007666E-3,17.359335,5.614071E-3,18.26195,9.382127E-3,17.453991,7.631329E-3,989.190186,1105.34827,2.721989,7.348535,2.699694,4.76,28.24781025,107.8,11.053721,14.37264,20.935581,9.319576,12.643089,14.212536,135.00206,167.875229,130.318405
nyu481567,587731186734072010,344.703526,0.22936638,2662,40,4,180,GALAXY,16.476221,3.777668E-3,15.533062,3.037203E-3,16.527498,0.016659,15.622036,0.013388,244.99968,1071.06421,7.20051,21.946949,3.047971,4.76,28.24780941,107.8,33.473278,40.262501,46.466507,18.591413,23.662659,28.169918,51.101589,55.106831,53.254662
nyu481527,587731186733809873,344.13450632,0.35973464,2662,40,4,176,GALAXY,16.955402,4.485682E-3,15.958339,3.449167E-3,17.031,0.030839,16.067768,0.029711,1430.37122,1341.70032,5.434586,17.604305,3.23931,4.76,28.24780924,107.8,30.026083,37.19519,38.734276,13.386709,17.021877,19.765837,22.448788,24.428528,27.714937
nyu481497,587731186733482133,343.27028187,0.40814611,2662,40,4,171,GALAXY,15.942529,3.203418E-3,14.966839,2.55084E-3,15.987503,6.968215E-3,15.02031,6.608643E-3,1870.53223,290.335663,10.682991,34.725239,3.250516,4.76,28.24780892,107.8,42.821312,56.64193,63.489872,29.001572,34.778702,40.079636,58.591011,54.018044,51.778099
nyu481487,587731186733416578,343.10525751,0.37739034,2662,40,4,170,GALAXY,16.92802,4.391607E-3,16.014803,3.480843E-3,16.997547,8.421695E-3,16.090431,6.889584E-3,1591.20496,151.148254,5.276444,15.941655,3.021288,4.76,28.24780889,107.8,24.850651,30.380022,31.716616,15.602548,18.222528,19.877895,64.956032,64.725792,61.590466
nyu481479,587731186733351124,343.06369589,0.38719466,2662,40,4,169,GALAXY,18.672464,0.011482,16.929255,4.992044E-3,18.584358,0.227542,17.010469,0.099444,1680.33789,1134.31274,3.648162,10.532621,2.887104,4.76,28.24780883,107.8,13.312301,16.514963,20.115389,9.840474,14.985815,16.243088,176.075729,35.74509,55.370403
nyu481466,587731186733285476,342.92981332,0.41528354,2662,40,4,168,GALAXY,15.213489,2.521149E-3,14.248784,2.132625E-3,15.238523,0.035886,14.281916,0.03058,1935.61499,1278.07092,13.613043,43.842804,3.220647,4.76,28.24780879,107.8,77.446365,87.281876,91.188065,28.895845,36.618435,40.12038,25.665745,26.37207,25.725655
nyu481450,587731186733023442,342.32986522,0.33580973,2662,40,4,164,GALAXY,17.257965,5.052045E-3,16.315075,3.873744E-3,17.413204,0.01349,16.467314,0.015363,1213.30103,1268.34424,4.357699,12.167825,2.792259,4.76,28.24780854,107.8,20.331839,24.250078,25.042276,9.237367,12.949504,15.52035,71.709595,69.634178,67.123779
nyu481433,587731186732892167,341.90450667,0.38499717,2662,40,4,162,GALAXY,16.267109,3.489845E-3,15.405612,2.888584E-3,16.389671,8.346582E-3,15.546268,7.602256E-3,1660.70325,123.24263,7.065978,22.135126,3.132635,4.76,28.2478084,107.8,34.591576,47.549911,53.05061,23.44672,27.933935,32.754986,114.26503,114.060432,110.647453
nyu481396,587731186732499256,341.12444234,0.41077847,2662,40,4,156,GALAXY,17.453897,5.111759E-3,16.506693,3.973506E-3,17.53867,0.017873,16.602222,0.015194,1894.64685,1197.71423,3.400723,9.847002,2.895561,4.76,28.24780808,107.8,20.406904,23.356396,26.317137,8.559779,10.49718,12.883434,150.161697,154.997787,160.916977
nyu481373,587731186732433570,340.85810097,0.29863739,2662,40,4,155,GALAXY,16.417999,3.838035E-3,15.48978,3.030499E-3,16.516239,9.027695E-3,15.611868,8.019703E-3,875.383545,137.556335,8.17909,25.471485,3.114219,4.76,28.24780799,107.8,31.654665,43.540024,52.593712,23.028831,28.327404,34.399982,33.232716,30.703789,28.775406
nyu481359,587731186732368134,340.81120441,0.41583812,2662,40,4,154,GALAXY,16.302675,3.473428E-3,15.350925,2.795359E-3,16.381029,8.172752E-3,15.436147,7.994479E-3,1940.75195,1072.02991,6.695281,21.969843,3.281392,4.76,28.24780792,107.8,30.825577,41.744568,47.789124,24.262077,30.819452,34.092308,154.684998,158.211899,163.14946
nyu481356,587731186732368101,340.76169807,0.29129195,2662,40,4,154,GALAXY,16.925951,4.754857E-3,16.014526,3.688283E-3,17.089069,8.071332E-3,16.194208,6.084858E-3,808.472961,622.314026,6.430122,17.452358,2.714156,4.76,28.24780792,107.8,22.333221,31.478802,37.239262,16.2791,19.66012,22.627041,95.761414,97.9972,93.472015
nyu481319,587731186731974879,339.88872196,0.41084855,2662,40,4,148,GALAXY,17.804464,6.49222E-3,16.897532,4.96268E-3,17.912188,0.032895,17.00391,0.032597,1895.68591,851.780823,3.451622,10.112886,2.929894,4.76,28.24780739,107.8,20.114847,23.416838,31.824728,7.292428,9.226348,11.209262,4.124554,4.660012,7.375289
nyu481308,587731186731909306,339.71099058,0.32205776,2662,40,4,147,GALAXY,16.45381,4.248377E-3,15.48882,3.238284E-3,16.359739,9.49616E-3,15.468168,6.337757E-3,1088.5033,597.419678,13.928502,36.532776,2.622879,4.76,28.2478073,107.8,45.883369,53.211472,54.394909,28.700605,32.315338,36.531078,169.467133,169.236816,168.07193
nyu481307,587731186731909291,339.69518396,0.35363976,2662,40,4,147,GALAXY,18.397894,9.638318E-3,17.457317,6.956888E-3,18.480427,0.016743,17.549271,0.013339,1375.64697,453.620514,4.053803,12.326808,3.040801,4.76,28.2478073,107.8,13.129537,19.66453,22.6387,10.066146,13.678956,13.914316,77.747429,67.458595,84.321625
nyu481198,587731186731057350,337.7663314,0.27771431,2662,40,4,134,GALAXY,16.400784,3.676308E-3,15.460522,2.916105E-3,16.471401,0.016939,15.561486,0.01543,685.207336,611.741638,7.14256,24.039557,3.365678,4.76,28.24780635,107.8,34.394764,51.97863,59.301998,24.664532,29.399387,32.621044,166.864517,169.768555,171.880768
nyu481152,587731186730795179,337.15924837,0.26612295,2662,40,4,130,GALAXY,17.169571,5.488319E-3,16.273083,4.070656E-3,17.272955,0.014345,16.394148,0.014063,579.806763,536.812622,4.755116,13.515523,2.842312,4.76,28.24780616,107.8,22.654768,26.120314,27.110012,9.222157,12.163126,12.404478,22.961647,22.711851,22.852589
nyu481111,587731186730533081,336.54594352,0.23770319,2662,40,4,126,GALAXY,17.92585,7.902982E-3,16.973608,5.650159E-3,18.075155,0.015982,17.12524,0.010685,321.437561,405.278229,5.243341,14.591702,2.782901,4.76,28.24780598,107.8,19.153601,22.973841,24.007883,9.48037,12.148026,12.605994,177.548157,178.169266,174.19165
nyu481090,587731186730467477,336.50566828,0.26233849,2662,40,4,125,GALAXY,16.467609,3.870822E-3,15.431545,2.910538E-3,16.571772,6.515255E-3,15.546046,4.321082E-3,545.191223,1400.0824,7.742722,23.012348,2.972126,4.76,28.247806,107.8,26.005142,33.920998,38.973816,24.167164,30.998421,36.791695,29.114326,50.144875,51.84996
nyu481054,587731186730271035,336.04794623,0.22720405,2662,40,4,122,GALAXY,16.380857,4.065016E-3,15.436118,3.122937E-3,16.573254,8.020204E-3,15.644919,5.13934E-3,226.380615,1321.89844,8.718207,24.990667,2.866492,4.76,28.24780578,107.8,34.289722,39.194996,41.005577,18.585382,23.9081,27.918327,135.134033,136.924469,135.062393
nyu481047,587731186730270977,336.01580642,0.31355329,2662,40,4,122,GALAXY,16.731331,4.361736E-3,15.78186,3.341009E-3,16.787043,0.028867,15.844077,0.028715,1011.34088,1029.57397,7.797981,26.346811,3.378671,4.76,28.24780578,107.8,35.305901,45.559681,47.060387,17.706154,23.695892,28.815252,52.953072,54.621998,59.112667
nyu481017,587731186730008890,335.385129,0.27928122,2662,40,4,118,GALAXY,15.968446,3.223854E-3,15.017367,2.596467E-3,16.062765,4.593709E-3,15.140769,3.262472E-3,699.645508,740.719421,9.85015,25.876888,2.627055,4.76,28.24780553,107.8,31.057739,37.012474,40.731548,30.081095,34.52626,38.066471,15.020209,17.637217,10.842201
nyu481016,587731186730008875,335.37650442,0.27133367,2662,40,4,118,GALAXY,17.837223,8.663143E-3,16.965067,7.191032E-3,18.077681,0.015892,17.188204,0.01157,627.403625,662.303955,5.744571,15.050013,2.619867,4.76,28.24780553,107.8,17.870695,19.896507,23.554344,11.015391,14.71806,14.605243,102.42868,103.142387,90.855247
nyu480998,587731186729877625,335.1273757,0.29652587,2662,40,4,116,GALAXY,17.238457,5.295201E-3,16.329885,4.056986E-3,17.29133,0.017441,16.413115,9.457546E-3,856.366272,1119.28967,5.852945,18.666058,3.189174,4.76,28.24780549,107.8,27.659,29.309259,32.56987,15.963586,20.663303,22.580868,97.937248,87.852959,77.132591
nyu480738,587731186727845967,330.46655991,0.31900439,2662,40,4,85,GALAXY,15.553579,2.759342E-3,14.596928,2.309453E-3,15.630933,6.915413E-3,14.683282,5.413443E-3,1060.43018,937.64209,10.719934,32.49276,3.03106,4.76,28.24780338,107.8,39.634209,47.893806,50.313801,31.442362,37.626415,36.246975,173.900055,173.417847,169.872696
nyu480607,587731186726535606,327.52101462,0.39928088,2662,40,4,65,GALAXY,16.566036,4.048003E-3,15.594521,3.136369E-3,16.706087,7.025386E-3,15.765679,6.065816E-3,1790.70996,1379.38745,6.924384,20.881697,3.015676,4.76,28.24780208,107.8,28.033251,35.57576,43.674255,20.989882,27.013723,30.445658,88.105286,87.417137,85.891273
nyu480564,587731186726207780,326.6476518,0.28295486,2662,40,4,60,GALAXY,17.239866,5.347215E-3,16.24132,3.97622E-3,17.29431,9.925287E-3,16.363623,7.944778E-3,733.001831,244.96991,6.105818,18.058029,2.957512,4.76,28.24780187,107.8,25.251163,32.393177,34.701797,14.942098,18.49074,21.402811,155.929718,158.876526,163.09848
nyu480494,587731186725552536,325.1563417,0.38470341,2662,40,4,50,GALAXY,18.13163,8.914715E-3,17.256678,6.693878E-3,18.147957,0.018886,17.263176,0.018576,1657.90479,297.051941,6.069962,19.71862,3.248558,4.76,28.24780136,107.8,15.205434,21.432457,24.112001,13.154739,17.094795,19.083172,168.885529,21.821352,3.00446
nyu480456,587731186725290370,324.55554166,0.26246717,2662,40,4,46,GALAXY,17.216991,5.050027E-3,16.285002,3.906687E-3,17.336077,0.013099,16.402536,0.011078,546.781311,279.640717,4.76417,14.795273,3.10553,4.76,28.24780105,107.8,21.271389,25.065113,29.916103,17.519573,23.515673,26.671593,58.280834,64.173477,25.253508
nyu480427,587731186725159297,324.30399048,0.41093865,2662,40,4,44,GALAXY,17.379522,5.299289E-3,16.509092,4.229139E-3,17.500511,0.015438,16.64554,0.014048,1896.64343,714.505005,4.234509,12.386794,2.925202,4.76,28.24780094,107.8,21.591238,25.384912,28.638491,10.55987,13.36478,14.879549,12.559466,9.86556,8.576986
nyu480422,587731186725159081,324.34201038,0.39628538,2662,40,4,44,GALAXY,16.054382,3.113842E-3,15.124013,2.62014E-3,16.19441,0.014319,15.276071,0.013835,1763.50549,1060.13049,5.511998,16.785961,3.04535,4.76,28.24780094,107.8,32.663361,39.156166,47.421349,21.284702,29.679285,34.794441,162.238419,172.222321,171.758835
nyu480418,587731186725093862,324.19314861,0.26306923,2662,40,4,43,GALAXY,16.66819,4.91194E-3,15.671821,3.629968E-3,16.95491,0.020384,15.963335,0.010331,552.28479,1068.07507,8.745811,22.73736,2.5998,4.76,28.24780093,107.8,33.1446,42.230503,42.594845,14.092523,16.623066,17.936497,52.215321,52.87672,47.289181
nyu480415,587731186725093787,324.1394499,0.37125693,2662,40,4,43,GALAXY,16.360855,4.003003E-3,15.401577,3.127778E-3,16.575457,0.049196,15.622675,0.047188,1535.85339,579.621399,6.559274,20.667065,3.150816,4.76,28.24780093,107.8,55.278049,67.442711,-9999,12.682374,14.918781,-9999,133.847,134.933563,-9999
nyu480375,587731186724962418,323.87136026,0.26829162,2662,40,4,41,GALAXY,16.063263,3.396876E-3,15.113441,2.710299E-3,16.111208,0.010754,15.186503,0.010222,599.478394,864.502136,10.576411,35.000931,3.309339,4.76,28.24780087,107.8,38.913589,50.07708,55.676376,29.719442,37.404606,42.713001,44.894566,52.538261,51.28775
nyu480374,587731186724962398,323.85531326,0.33002778,2662,40,4,41,GALAXY,17.363691,5.650951E-3,16.457775,4.35927E-3,17.439362,0.010297,16.529875,8.292928E-3,1160.81055,718.442017,5.850875,18.527964,3.166699,4.76,28.24780087,107.8,18.466228,24.167963,28.754892,17.272854,22.363361,26.05401,106.367599,131.884995,43.914791
nyu480229,587731186724176154,322.09276032,0.31282726,2662,40,4,29,GALAXY,17.635986,7.513217E-3,16.776276,6.035137E-3,17.66708,1.072077,16.739201,0.998547,1004.97333,1026.54883,8.233651,21.653503,2.629879,4.76,28.24779972,107.8,21.825598,33.279545,30.938435,10.682122,13.296007,13.662572,73.317612,60.838501,79.321442
nyu480223,587731186724110866,321.9571296,0.41651748,2662,40,4,28,GALAXY,17.47677,7.72515E-3,16.531708,5.708348E-3,17.640972,0.02481,16.792984,0.02209,1947.76074,1154.16858,8.933012,26.158016,2.928241,4.76,28.24779965,107.8,39.818649,43.840649,47.197636,8.570444,10.468133,11.527648,71.730469,70.43576,71.266968
nyu480219,587731186724110554,321.93970794,0.32640228,2662,40,4,28,GALAXY,15.773021,2.850117E-3,14.967831,2.513564E-3,15.874407,3.574279E-3,15.079072,3.105652E-3,1128.57617,996.033875,7.042536,21.900692,3.109774,4.76,28.24779965,107.8,31.714989,40.447937,45.398296,30.211107,37.121136,40.327038,25.316574,11.162428,3.792116
nyu480204,587731186723979849,321.66613101,0.30836234,2662,40,4,26,GALAXY,16.491608,3.764027E-3,15.53628,3.008462E-3,16.55003,5.950225E-3,15.610764,4.816254E-3,964.335266,1231.13086,7.011337,22.37409,3.19113,4.76,28.24779941,107.8,25.947649,35.868858,40.525288,25.050224,31.010412,36.736927,22.389582,2.665712,166.613388
nyu477324,587731186210308165,14.66882403,-0.18590598,2662,40,3,380,GALAXY,17.671597,6.255101E-3,16.775038,4.662537E-3,17.66501,0.012659,16.810566,9.638362E-3,287.199402,1277.38721,4.486668,14.345676,3.197401,4.72,28.26814459,161.7,16.784769,20.978767,25.515179,16.176027,18.924168,21.022322,45.664417,123.559822,131.92746
nyu477298,587731186210046109,14.08171329,-0.12576515,2662,40,3,376,GALAXY,15.749573,2.868239E-3,14.858799,2.450001E-3,15.673657,0.04615,14.802564,0.045556,834.292664,1384.08167,9.616354,28.652998,2.979611,4.72,28.2681443,161.7,67.623909,74.655525,74.29747,17.060574,21.0898,24.271666,167.025024,167.767639,165.023392
nyu477290,587731186210046007,13.93652828,-0.07150458,2662,40,3,376,GALAXY,16.557789,5.15112E-3,15.752318,4.225638E-3,16.921951,0.013413,16.164797,9.556719E-3,1327.74365,64.314354,9.442959,25.376829,2.687381,4.72,28.2681443,161.7,39.799877,43.290531,41.251461,13.008525,15.265366,18.687101,33.298145,36.189972,35.133373
nyu477221,587731186209521707,12.76814325,-0.13456007,2662,40,3,368,GALAXY,16.115084,3.527453E-3,15.242717,2.842728E-3,16.207611,0.049128,15.378067,0.040376,754.10199,331.44101,9.289836,29.256926,3.149348,4.72,28.26814427,161.7,34.04546,42.633476,47.754631,27.999172,35.542236,39.265858,175.632065,162.328247,169.438248
nyu477214,587731186209390702,12.4758512,-0.14872096,2662,40,3,366,GALAXY,17.347746,5.488083E-3,16.51598,0.016798,17.43541,0.024966,16.556595,0.022353,625.68042,396.192749,3.766414,11.022071,2.92641,4.72,28.26814407,161.7,23.540737,-9999,-9999,10.566003,-9999,-9999,12.14524,-9999,-9999
nyu477048,587731186208145598,9.68556664,-0.10368534,2662,40,3,347,GALAXY,17.990135,8.676159E-3,16.998077,6.019748E-3,18.065836,0.019128,17.111738,0.015744,1034.73206,889.869751,4.323277,12.970036,3.000047,4.72,28.26814294,161.7,15.836981,21.180355,23.743652,11.024951,14.687656,15.943253,175.629623,155.732559,167.982483
nyu477045,587731186208145575,9.64407738,-2.7234E-3,2662,40,3,347,GALAXY,17.33906,5.872144E-3,16.447294,4.429373E-3,17.37907,0.014506,16.531685,0.012814,1952.43152,512.704163,6.44865,20.252964,3.140652,4.72,28.26814294,161.7,24.662889,31.407869,33.301132,15.179234,18.592642,20.891027,165.232147,166.134781,163.853394
nyu476982,587731186207621303,8.53838187,-0.12280925,2662,40,3,339,GALAXY,18.647482,8.99261E-3,17.716616,6.473676E-3,18.702991,0.013173,17.770784,9.561157E-3,861.005432,1349.13257,2.434815,6.704084,2.753427,4.72,28.26814253,161.7,10.922024,14.684857,15.90036,6.775705,8.834555,9.951318,92.591469,91.798645,91.063759
nyu476960,587731186207424641,7.96475353,-0.01428165,2662,40,3,336,GALAXY,18.317686,8.764496E-3,17.463295,6.655917E-3,18.341337,0.017097,17.531647,0.014436,1847.41528,217.692184,3.594392,10.855797,3.020204,4.72,28.26814266,161.7,16.782742,20.367474,23.130945,8.511408,9.773866,11.268581,49.627781,50.390965,51.359505
nyu476926,587731186207162556,7.4388318,-0.19679708,2662,40,3,332,GALAXY,17.567404,5.428586E-3,16.678848,4.207128E-3,17.618736,0.012969,16.751381,0.013769,188.294708,880.731689,3.543011,10.076783,2.84413,4.72,28.26814242,161.7,16.750162,20.502636,22.422337,9.707427,13.73062,15.666228,105.263786,112.786377,105.189774
nyu476903,587731186206179479,5.20419339,-0.07755536,2662,40,3,317,GALAXY,17.411903,0.019316,16.458065,4.039469E-3,17.399443,8.625773E-3,16.557802,7.545818E-3,1272.37744,982.528137,4.005531,10.664604,2.662469,4.72,28.26814185,161.7,17.711777,20.612423,23.830252,10.901493,13.461269,15.100509,37.790394,44.770626,41.798912
nyu476896,587731186206179425,5.13727351,-0.14639673,2662,40,3,317,GALAXY,15.480269,2.729543E-3,14.541061,2.258405E-3,15.53838,8.906487E-3,14.623116,7.846178E-3,646.504517,374.221649,11.303317,37.360664,3.305284,4.72,28.26814185,161.7,50.53083,60.861458,65.832794,32.453545,41.439812,47.185841,101.382942,101.03083,98.126762
nyu476886,587731186206113980,5.09298723,-0.04992986,2662,40,3,316,GALAXY,16.921722,4.482968E-3,15.965349,3.407626E-3,16.975368,8.194488E-3,16.033203,6.484289E-3,1523.52002,1332.53186,5.574315,18.005381,3.230061,4.72,28.2681417,161.7,22.390574,29.383228,33.971523,19.777845,25.785339,29.46356,32.969658,6.556624,17.906591
nyu476884,587731186206113935,5.0152641,-0.19264276,2662,40,3,316,GALAXY,18.42223,0.010969,17.395891,7.692586E-3,18.360626,0.038914,17.36953,0.029455,226.175476,626.117859,6.57372,18.132704,2.758363,4.72,28.2681417,161.7,25.150393,27.295504,32.034164,6.712129,8.948965,9.766196,84.050995,82.50248,82.409134
nyu476883,587731186206113934,5.01989393,-0.20160885,2662,40,3,316,GALAXY,16.404757,4.159515E-3,15.33672,3.001862E-3,16.463697,8.050925E-3,15.484894,6.051505E-3,144.708801,668.212463,10.379816,30.766748,2.964094,4.72,28.2681417,161.7,34.780693,46.376751,51.461998,25.217903,31.608398,36.264156,133.335022,133.924011,132.267776
nyu476831,587731186205786263,4.29120692,-0.12182743,2662,40,3,311,GALAXY,16.685114,4.226095E-3,15.868195,3.439632E-3,16.736715,0.010055,15.935165,8.245651E-3,869.589539,848.605835,7.143451,22.598713,3.163557,4.72,28.2681416,161.7,28.838261,35.503635,38.120869,21.044939,24.739079,26.392574,150.394455,147.109924,148.957825
nyu476815,587731186205720699,4.07359462,-0.10171662,2662,40,3,310,GALAXY,17.353003,5.535075E-3,16.422987,4.092081E-3,17.402403,8.096137E-3,16.480434,5.924932E-3,1052.35889,231.422836,4.530798,13.734137,3.031284,4.72,28.26814158,161.7,17.096373,21.672279,23.876596,16.142515,18.196098,21.542418,74.097763,110.223152,116.296387
nyu476792,587731186205589602,3.79099911,-0.03143214,2662,40,3,308,GALAXY,16.84733,4.771319E-3,16.065695,3.76599E-3,17.009468,6.902581E-3,16.209328,6.117828E-3,1691.56812,384.602692,5.751118,15.297536,2.659924,4.72,28.26814138,161.7,23.6283,28.061537,30.098127,13.697053,16.157385,16.765551,88.158997,84.926247,86.901802
nyu476780,587731186205524120,3.65741671,-6.03443E-3,2662,40,3,307,GALAXY,18.533726,0.010202,17.631805,7.185408E-3,18.681046,0.01795,17.752831,0.016162,1922.4469,531.40033,3.406224,9.488219,2.785554,4.72,28.26814127,161.7,16.470804,18.16855,19.617132,5.493457,6.768093,7.018731,104.879631,102.731644,111.625633
nyu476779,587731186205524102,3.64458824,-0.01250307,2662,40,3,307,GALAXY,15.884265,3.219619E-3,14.923124,2.547965E-3,15.993767,5.061609E-3,15.051256,3.789472E-3,1863.66223,414.796326,10.001768,30.151367,3.014604,4.72,28.26814127,161.7,36.484364,46.414001,51.677856,30.73982,37.415245,42.931061,89.335007,85.347641,91.888336
nyu476776,587731186205524071,3.61002456,-0.18165571,2662,40,3,307,GALAXY,17.071005,4.550264E-3,16.145741,3.580762E-3,17.196211,0.027092,16.285753,0.0238,325.974792,100.740692,3.966927,12.050529,3.03775,4.72,28.26814127,161.7,33.477818,38.381626,41.438175,10.686302,12.076046,12.568169,179.953033,0.316373,179.058044
nyu476629,587731186204606599,1.65245765,-0.0332044,2662,40,3,293,GALAXY,18.0513,6.47952E-3,17.066069,4.829804E-3,18.064341,0.014468,17.098125,0.013048,1674.79187,1358.86047,2.577968,7.4283,2.881456,4.72,28.26814047,161.7,14.52767,18.372271,21.766853,9.109535,13.209458,13.505707,129.041916,132.532944,144.366943
nyu476523,587731186204016720,0.16380333,-0.01339121,2662,40,3,284,GALAXY,17.082163,6.669652E-3,16.098223,4.183303E-3,17.301664,0.014775,16.289286,0.018107,1854.99463,74.506409,6.590788,19.586361,2.971778,4.72,28.26813991,161.7,28.811424,34.298168,40.573532,10.388285,12.83181,13.145775,159.02771,157.583237,158.348999
nyu476513,587731186203951111,0.0184871,-0.08335706,2662,40,3,283,GALAXY,15.313261,2.608574E-3,14.524887,2.27353E-3,15.437106,3.951123E-3,14.656965,3.619156E-3,1218.93994,114.341972,10.980859,33.140667,3.018039,4.72,28.26814001,161.7,43.797474,50.581825,52.711475,37.279079,45.378345,46.584667,155.387253,159.195648,155.105011
nyu476507,587731186203885750,6.46432E-3,-0.09259301,2662,40,3,282,GALAXY,17.910597,6.931853E-3,17.01968,5.147521E-3,17.972752,0.019555,17.087849,0.015541,1134.92371,1366.03027,3.919076,11.927074,3.043339,4.72,28.26813987,161.7,19.533941,23.429144,24.839525,9.832897,11.636585,13.152127,59.036381,60.378609,57.60281
nyu476464,587731186203557977,359.21390242,-8.23855E-3,2662,40,3,277,GALAXY,17.605936,6.669348E-3,16.679083,4.816182E-3,17.772331,0.011474,16.842054,9.551385E-3,1901.53857,966.248291,4.593446,12.970903,2.823785,4.72,28.26813969,161.7,18.114756,22.300493,24.298489,11.984211,16.082006,19.47089,136.117233,124.678772,109.085777
nyu476277,587731186202312899,356.4070034,-0.20560905,2662,40,3,258,GALAXY,16.397089,3.749067E-3,15.509291,3.03533E-3,16.504471,0.038703,15.642927,0.03697,107.124962,1308.65503,6.696685,21.908104,3.271485,4.72,28.26813912,161.7,35.371578,42.472149,46.541851,19.484856,24.202265,28.162155,151.835403,156.170654,151.709549
nyu476274,587731186202312854,356.32893502,-0.14706273,2662,40,3,258,GALAXY,16.419678,3.710888E-3,15.501104,3.022783E-3,16.566349,0.0412,15.665551,0.035722,639.217163,598.911865,5.959167,18.79566,3.154075,4.72,28.26813912,161.7,41.880306,44.89159,45.820595,13.072141,16.725409,20.406977,42.183994,45.201847,41.050117
nyu476272,587731186202312837,356.30599146,-0.18204489,2662,40,3,258,GALAXY,17.6395,5.895006E-3,16.731028,4.514678E-3,17.738777,0.020362,16.85725,0.018551,321.249664,390.368439,3.582625,10.395549,2.901657,4.72,28.26813912,161.7,20.060539,23.723307,24.432203,8.539838,10.262442,12.322164,60.432323,62.530476,65.94854
nyu476271,587731186202312733,356.3006425,-0.16242467,2662,40,3,258,GALAXY,17.589684,5.608625E-3,16.645489,4.300727E-3,17.698116,0.032586,16.761372,0.029182,499.575623,341.726746,3.21431,9.971169,3.102118,4.72,28.26813912,161.7,24.277615,27.854752,27.506912,8.843456,10.404483,13.126582,82.453545,86.460297,83.01313
nyu476259,588015509267677254,356.07235894,1.9883E-4,3325,41,4,82,GALAXY,18.448362,0.01141,17.442705,7.368958E-3,18.557663,0.056655,17.544977,0.04115,110.366966,90.197914,3.972793,12.432827,3.129493,4.76,28.09139998,107.8,19.443909,26.193796,30.793211,7.670885,10.252038,14.575371,57.512653,61.202396,54.508041
nyu476197,587731186201657601,354.9115773,-0.05585146,2662,40,3,248,GALAXY,16.742182,4.311197E-3,15.812912,3.346771E-3,16.825277,6.90737E-3,15.921964,5.090351E-3,1468.04468,1323.64307,6.319925,19.487665,3.083528,4.72,28.26813895,161.7,24.281668,30.92149,34.652206,21.353319,26.558538,29.626957,68.927757,70.932991,81.856552
nyu476189,587731186201657485,354.92189435,-0.03448662,2662,40,3,248,GALAXY,15.386229,2.606385E-3,14.559845,2.289418E-3,15.446328,6.612298E-3,14.626218,6.049844E-3,1662.26465,1417.43713,9.491042,30.962021,3.262236,4.72,28.26813895,161.7,45.131084,55.215515,-9999,33.64349,38.775467,-9999,57.608753,54.756912,-9999
nyu476136,587731186201198689,353.74336265,-0.20168108,2662,40,3,241,GALAXY,16.311712,3.555243E-3,15.417954,2.917621E-3,16.350338,4.669211E-3,15.457371,3.778317E-3,142.442825,230.689316,6.260326,18.703325,2.987596,4.72,28.26813818,161.7,27.819761,32.810886,36.118179,18.913065,22.852337,23.994795,50.675442,53.771614,51.648071
nyu476076,587731186200543379,352.24245482,-0.20169031,2662,40,3,231,GALAXY,18.423702,8.515514E-3,17.499067,6.175699E-3,18.47517,0.012473,17.558256,9.972339E-3,142.258484,196.350021,2.657737,7.706945,2.899815,4.72,28.26813754,161.7,11.460637,14.260702,16.443312,7.732902,10.114206,10.96041,78.866547,89.28479,76.296913
nyu475971,587731186199494858,349.9519193,-0.02558184,2662,40,3,215,GALAXY,17.053568,4.595788E-3,16.116066,3.580882E-3,17.156719,7.155096E-3,16.2213,6.227589E-3,1742.73328,1149.1051,4.266228,13.019079,3.051661,4.72,28.26813646,161.7,19.848532,29.596617,32.668209,16.236456,20.389576,21.403353,64.001305,68.717575,60.598396
nyu475918,587731186198708399,348.13376994,-0.11026447,2662,40,3,203,GALAXY,15.856026,2.920129E-3,15.028651,2.568844E-3,15.93374,0.022362,15.117193,0.020755,972.492615,952.584961,5.635153,17.565786,3.11718,4.72,28.26813586,107.8,28.658117,33.311741,37.796818,24.869619,30.36702,35.336964,166.958847,14.16447,16.14312
nyu475899,587731186198577196,347.79175676,-0.15224919,2662,40,3,201,GALAXY,15.054618,2.345017E-3,14.239614,2.08518E-3,15.119806,4.405487E-3,14.299936,4.568759E-3,590.763733,565.522278,10.407778,35.912827,3.450576,4.72,28.2681356,107.8,47.315628,55.789299,59.556705,46.156254,52.880737,56.830051,77.719765,67.53801,67.891609
nyu475894,587731186198446278,347.55477778,-0.02266007,2662,40,3,199,GALAXY,17.617601,6.46109E-3,16.695427,4.747965E-3,17.708906,0.011861,16.750629,8.127449E-3,1769.00293,1133.04382,5.402288,15.888334,2.941038,4.72,28.26813554,107.8,16.216448,20.822008,23.162237,13.960829,19.193897,20.409079,157.050583,130.819382,109.094193
nyu475861,587731186197987565,346.51682393,-0.01542449,2662,40,3,192,GALAXY,17.467846,5.718332E-3,16.554388,4.347457E-3,17.466358,9.976498E-3,16.587179,7.744518E-3,1834.7699,1224.15857,5.116899,15.907516,3.10882,4.72,28.26813513,107.8,20.559513,27.722683,34.468594,14.733305,17.985765,20.941883,52.301132,56.148945,60.536171
nyu475859,587731186197987497,346.4259002,-0.08134596,2662,40,3,192,GALAXY,17.056238,5.11886E-3,16.112993,3.861468E-3,16.927788,0.012946,16.054068,0.012616,1235.47412,397.694275,9.09766,26.236641,2.883889,4.72,28.26813513,107.8,30.37689,36.275162,38.844868,23.773979,26.812899,29.125004,82.413635,82.593834,90.262634
nyu475850,587731186197856449,346.15280361,-0.04776386,2662,40,3,190,GALAXY,17.393314,5.318077E-3,16.533411,4.17562E-3,17.485283,0.029787,16.631937,0.02784,1540.56104,637.418579,3.582483,10.528002,2.938745,4.72,28.2681349,107.8,22.530048,26.036036,-9999,8.043093,9.691995,-9999,120.316521,121.759117,-9999
nyu475844,587731186197790846,346.00994073,-0.04961012,2662,40,3,189,GALAXY,18.473576,8.785035E-3,17.506674,6.253644E-3,18.497166,0.01958,17.552208,0.019607,1523.72681,699.353699,2.964536,8.822465,2.976002,4.72,28.26813497,107.8,12.366743,18.148945,18.429138,8.984239,11.786259,13.504375,119.190857,115.408081,92.405609
nyu475783,587731186196938908,344.08059841,-0.10422735,2662,40,3,176,GALAXY,17.858559,6.946868E-3,16.855227,4.946165E-3,17.887774,0.012825,16.888409,8.427464E-3,1027.73694,852.901733,4.847934,13.292433,2.741876,4.72,28.26813416,107.8,15.109969,18.328106,19.748209,12.63596,15.603519,17.699667,25.595011,14.423793,48.633785
nyu475782,587731186196938879,344.03890635,-0.14353113,2662,40,3,176,GALAXY,18.418455,0.018594,17.455437,0.010114,18.383827,0.026936,17.440327,0.018904,670.397949,473.896973,5.633373,14.743402,2.617154,4.72,28.26813416,107.8,20.906742,25.00145,24.937826,7.134424,9.001101,11.112718,173.667404,171.863586,168.902206
nyu475781,587731186196938765,344.00061047,-0.11061918,2662,40,3,176,GALAXY,17.103542,4.365449E-3,16.170227,3.564936E-3,17.164057,0.015852,16.243967,0.013882,969.614014,125.718521,2.776792,8.172329,2.943083,4.72,28.26813416,107.8,18.145302,26.95685,32.205132,15.388795,18.568531,20.171032,93.053581,80.592667,84.556183
nyu475673,587731186195628203,341.09546333,-0.11434916,2662,40,3,156,GALAXY,17.299623,5.830041E-3,16.382093,4.399099E-3,17.379171,0.116519,16.555592,0.096172,936.011597,935.749023,6.461782,21.117136,3.268005,4.72,28.26813285,107.8,39.092892,37.925533,37.120113,8.28938,10.355598,11.195452,89.32563,90.653023,88.205223
nyu475660,587731186195497160,340.76503624,-0.14356656,2662,40,3,154,GALAXY,16.006924,3.233095E-3,15.08064,2.633184E-3,16.165476,0.015815,15.249217,0.015368,670.426086,653.865112,6.990409,20.60882,2.948156,4.72,28.26813259,107.8,36.761265,45.477592,50.520306,20.671074,25.893812,31.452049,125.427391,130.332809,136.696945
nyu475652,587731186195431644,340.67157891,-0.05793172,2662,40,3,153,GALAXY,16.882107,4.883373E-3,15.837852,3.521275E-3,16.791252,0.049274,15.796598,0.032646,1449.02747,1165.2323,9.186353,25.736507,2.801602,4.72,28.26813272,107.8,47.072533,53.288113,56.719879,10.947922,14.403018,17.560171,82.757217,83.293983,85.643349
nyu475648,587731186195431589,340.58812481,-0.05794417,2662,40,3,153,GALAXY,17.047653,4.979458E-3,16.163183,3.856437E-3,17.150152,0.013388,16.271048,0.011846,1448.9585,406.578308,5.059573,14.935163,2.951862,4.72,28.26813272,107.8,21.842548,26.130674,-9999,15.604353,19.15572,-9999,60.888763,63.848358,-9999
nyu475632,587731186195235014,340.11970386,-0.06591069,2662,40,3,150,GALAXY,17.835054,7.702559E-3,16.927013,5.608598E-3,18.022409,0.014302,17.113672,0.010884,1376.75903,230.946426,5.129616,14.162549,2.760937,4.72,28.26813238,161.7,18.472425,23.46106,24.260519,10.071951,12.28249,13.36112,170.091736,167.069809,167.667908
nyu475628,587731186195169490,340.0429638,-0.1295519,2662,40,3,149,GALAXY,17.609142,6.194733E-3,16.740635,4.588895E-3,17.679098,8.389546E-3,16.814798,6.261448E-3,798.229614,894.314392,3.939083,10.733563,2.724889,4.72,28.26813234,161.7,15.218271,16.988554,17.743916,11.585384,13.80132,14.790286,98.592232,97.725792,96.753403
nyu475598,587731186194907167,339.37436999,-0.17926361,2662,40,3,145,GALAXY,18.496391,9.590485E-3,17.523886,6.580241E-3,18.613085,0.018555,17.579363,0.01181,346.057404,260.438782,3.613629,10.341282,2.861744,4.72,28.26813207,107.8,12.464997,16.151497,16.777613,8.180356,10.526985,12.696918,81.765503,78.958656,84.037613
nyu475365,587731186192875643,334.83557805,-0.10823249,2662,40,3,114,GALAXY,18.114702,7.684413E-3,17.097778,5.293681E-3,18.150528,0.013084,17.12594,9.552383E-3,991.94574,1189.64014,3.878153,12.143209,3.131184,4.72,28.26813007,107.8,13.804946,16.369513,19.550678,11.519321,15.228561,17.439611,171.664047,7.527755,99.768776
nyu475214,587731186192023869,332.86733761,-0.02926339,2662,40,3,101,GALAXY,16.962471,4.660924E-3,16.06951,3.663526E-3,17.074306,0.012233,16.218817,0.012067,1709.83081,989.063354,5.314318,14.723794,2.77059,4.72,28.26812919,107.8,24.956068,28.612364,32.515846,12.052946,15.349266,16.141523,57.016933,53.402615,53.231369
nyu475203,587731186192023676,332.86429956,-0.05060869,2662,40,3,101,GALAXY,15.71546,3.032167E-3,14.746669,2.432503E-3,15.786668,5.146438E-3,14.881291,4.285536E-3,1515.7998,961.44812,10.972917,32.559513,2.967262,4.72,28.26812919,107.8,40.790028,51.868313,64.356552,31.889751,38.156456,39.975609,4.476129,3.240227,10.435128
nyu475141,587731186191565107,331.76921145,-0.10012175,2662,40,3,94,GALAXY,16.567215,4.263733E-3,15.539647,3.137053E-3,16.590103,0.011104,15.608985,6.521717E-3,1065.49084,532.906799,9.582397,26.025574,2.715977,4.72,28.26812881,107.8,32.266796,37.688171,42.098564,23.981773,29.011494,31.238245,158.871689,160.652451,168.688675
nyu474969,587731186190254253,328.84469585,-0.01484968,2662,40,3,74,GALAXY,16.137123,3.233615E-3,15.277272,2.716827E-3,16.21833,0.011566,15.359426,0.012918,1840.84473,1165.02222,5.658279,19.521477,3.450073,4.72,28.26812766,107.8,32.662392,39.816204,46.210003,29.142563,36.593746,39.748272,128.056107,89.850853,99.872017
nyu474851,587731186189140385,326.31652928,-0.19620978,2662,40,3,57,GALAXY,16.402147,3.720728E-3,15.438218,2.881699E-3,16.491934,5.973423E-3,15.527821,4.736403E-3,191.904099,1318.96533,6.827201,21.848309,3.200185,4.72,28.26812633,161.7,27.776499,34.502403,38.644962,24.017641,30.139992,32.481266,69.531448,63.688549,70.936882
nyu474794,587731186188550621,324.94454352,-0.11300876,2662,40,3,48,GALAXY,17.197542,6.525196E-3,16.208632,4.756722E-3,17.380438,0.056612,16.452242,0.095274,948.609619,1094.83948,9.12649,28.879391,3.164348,4.72,28.26812567,161.7,52.454124,67.143272,69.174522,7.877559,8.787054,10.68623,160.46843,161.301163,162.359238
nyu474780,587731186188419560,324.64519004,-0.01141226,2662,40,3,46,GALAXY,17.9396,6.995762E-3,16.942204,4.999015E-3,18.004116,0.014093,17.033678,0.011343,1872.37354,1095.6311,3.573991,11.283814,3.157203,4.72,28.26812567,161.7,15.25801,19.656219,21.678904,12.67753,16.442192,18.233635,6.613638,30.382095,17.893127
nyu474776,587731186188419422,324.55036795,-0.12513146,2662,40,3,46,GALAXY,17.319944,5.804722E-3,16.421741,4.139355E-3,17.35433,8.122869E-3,16.45554,6.197398E-3,838.516479,233.666397,4.56938,13.89362,3.040592,4.72,28.26812567,161.7,19.821457,22.034956,24.159424,12.922417,15.80942,17.682177,82.211311,97.078178,94.525528
nyu474766,587731186188353872,324.40422884,-0.18379376,2662,40,3,45,GALAXY,16.48391,3.745639E-3,15.547366,2.997774E-3,16.60137,0.013179,15.684827,0.011851,305.322449,266.244202,5.565698,16.616188,2.985463,4.72,28.2681256,161.7,28.217224,33.593624,41.667164,16.486534,20.693796,24.392874,156.915771,161.042709,162.095581
nyu474654,587731186187698452,322.97411913,-8.13584E-3,2662,40,3,35,GALAXY,16.351961,3.595163E-3,15.544519,3.037125E-3,16.413456,0.010646,15.603333,0.010036,1901.94556,874.226929,6.843367,22.748211,3.324126,4.72,28.26812508,161.7,31.333252,37.119484,40.65374,26.728474,33.004871,35.670227,115.346611,110.838097,108.99514
nyu474494,587731186455019742,320.444183,-0.16073461,2662,40,3,18,GALAXY,16.458065,3.868105E-3,15.584132,3.113673E-3,16.506603,0.013687,15.653063,0.012625,515.230835,1011.08282,7.722515,25.401571,3.289287,4.72,28.26812349,161.7,36.631729,47.036407,52.400097,20.704849,25.593874,29.224899,80.067589,79.070572,81.148354
nyu471675,587731185673568271,14.87908646,-0.43681725,2662,40,2,382,GALAXY,16.622314,4.4546E-3,15.679203,3.329842E-3,16.657402,0.044038,15.751698,0.036151,1820.20605,465.735931,8.874098,28.005405,3.155859,4.6,28.25425541,107.8,31.027929,35.288132,36.611248,23.421593,31.079451,34.955898,45.429394,43.32003,67.079109
nyu471663,587731185673437242,14.54244955,-0.62605381,2662,40,2,380,GALAXY,17.269474,4.832859E-3,16.434813,3.85505E-3,17.36384,6.489566E-3,16.51367,5.307608E-3,100.05587,127.890953,2.981459,8.480613,2.844451,4.6,28.25425524,107.8,16.787964,21.038128,22.899839,15.57667,20.149481,21.945356,4.412174,149.655457,112.001297
nyu471661,587731185673371825,14.52841965,-0.51029132,2662,40,2,379,GALAXY,17.080997,5.236151E-3,16.207247,4.0261E-3,17.196531,9.152161E-3,16.333429,7.244146E-3,1152.15625,1361.14136,6.293253,18.358553,2.91718,4.6,28.25425519,107.8,20.193443,24.021219,24.992397,18.682621,22.327776,23.598961,22.20957,171.427444,0.076551
nyu471660,587731185673371816,14.5275189,-0.57620584,2662,40,2,379,GALAXY,16.831102,4.529419E-3,15.986176,3.586543E-3,16.905987,7.858158E-3,16.082699,6.555949E-3,553.008728,1353.09436,6.379967,19.870417,3.114501,4.6,28.25425519,107.8,22.143276,28.305334,30.829283,21.285172,26.036718,29.194773,106.353493,131.78418,138.207504
nyu471656,587731185673371705,14.44361538,-0.5823011,2662,40,2,379,GALAXY,16.281124,3.485237E-3,15.399753,2.84798E-3,16.399841,9.105157E-3,15.539529,8.849643E-3,497.650452,590.281982,5.926143,18.269136,3.082804,4.6,28.25425519,107.8,31.434748,44.174438,45.798454,21.42905,24.966257,26.055861,88.92009,87.998314,87.139786
nyu471655,588015508738801700,14.43766662,-0.41942357,3325,41,3,204,GALAXY,14.416873,2.186057E-3,13.50593,1.868992E-3,14.550427,0.01129,13.634864,0.011789,112.040756,1000.71301,17.692625,51.180264,2.892745,4.72,28.1136315,107.8,64.840591,80.385536,85.233704,54.040981,66.384872,74.490013,36.660477,38.668461,43.807121
nyu471643,587731185673306324,14.31878804,-0.48917101,2662,40,2,378,GALAXY,17.541445,7.716477E-3,16.608612,5.257521E-3,17.705502,0.014416,16.774414,0.011377,1344.30994,816.324463,6.01834,17.408251,2.892534,4.6,28.25425515,107.8,18.925781,23.059835,25.936701,13.483559,18.533716,19.680496,78.791023,87.043427,77.671181
nyu471638,587731185673306247,14.36509071,-0.47158521,2662,40,2,378,GALAXY,15.271368,2.518756E-3,14.293715,2.113364E-3,15.386925,0.019881,14.401725,0.020345,1504.07275,1237.19373,8.598951,29.865084,3.473108,4.6,28.25425515,107.8,52.002754,71.909943,79.448975,34.14933,46.044201,53.374126,79.510094,79.883797,82.675674
nyu471636,587731185673306241,14.34228397,-0.42879411,2662,40,2,378,GALAXY,16.759336,5.008384E-3,15.871289,3.798602E-3,17.042017,9.45935E-3,16.13343,8.276499E-3,1892.96997,1029.74951,7.537686,19.844023,2.632641,4.6,28.25425515,107.8,31.2103,37.164211,42.72179,12.324378,14.459687,14.708079,104.621323,103.189453,104.693558
nyu471634,587731185673306216,14.3573378,-0.51997919,2662,40,2,378,GALAXY,15.702558,2.833037E-3,14.824217,2.419002E-3,15.829831,0.015612,14.949877,0.014944,1064.1925,1166.84204,6.412835,19.881815,3.100316,4.6,28.25425515,107.8,39.373344,49.180088,53.017094,25.943954,31.960945,39.702816,36.21405,39.503857,42.280014
nyu471631,587731185673240780,14.20602054,-0.6256082,2662,40,2,377,GALAXY,16.771296,5.135461E-3,15.959528,3.957107E-3,17.012484,0.021116,16.165604,0.020785,104.533302,1152.48376,5.63433,15.537009,2.757561,4.6,28.25425502,107.8,31.046419,39.526947,46.797352,10.503948,12.302023,14.00483,115.739273,113.414467,115.192719
nyu471468,588015508737491008,11.39774989,-0.41880781,3325,41,3,184,GALAXY,16.674572,4.64953E-3,15.852439,3.666602E-3,16.748838,8.881544E-3,15.971347,6.949869E-3,116.757492,587.069885,6.389874,18.282597,2.861182,4.72,28.11363237,107.8,26.880072,32.883369,34.950539,16.888716,18.627617,19.913399,169.542404,166.995056,163.197922
nyu471454,587731185671930004,11.19791537,-0.42738328,2662,40,2,357,GALAXY,15.94153,3.680313E-3,15.140372,2.908152E-3,16.108727,6.708272E-3,15.2665,5.14426E-3,1905.79932,1026.81995,12.71262,37.259769,2.930928,4.6,28.25425438,107.8,37.209305,46.214401,51.549217,32.770084,40.231396,46.086239,63.349678,64.709122,67.639977
nyu471452,587731185671929986,11.18872509,-0.55073893,2662,40,2,357,GALAXY,16.549633,3.915565E-3,15.744624,3.18257E-3,16.712538,6.237407E-3,15.872561,5.434634E-3,784.605103,943.571899,5.147146,16.118261,3.131495,4.6,28.25425438,107.8,25.152483,32.697521,40.041294,22.375467,29.264286,30.030348,125.320686,148.490112,150.478226
nyu471363,587731185671274610,9.60283074,-0.61465359,2662,40,2,347,GALAXY,17.533552,6.005945E-3,16.550556,4.349267E-3,17.607788,0.021007,16.685337,0.014851,203.796021,137.309555,4.527632,13.136104,2.901319,4.6,28.2542537,107.8,23.280535,27.751846,28.960566,9.132796,11.53774,14.214248,100.726486,101.334244,109.446213
nyu471356,587731185671209075,9.57211753,-0.6192013,2662,40,2,346,GALAXY,17.72163,6.877049E-3,16.80517,5.056725E-3,17.716614,0.037313,16.858152,0.026673,162.478287,1219.09595,5.457285,17.323269,3.174338,4.6,28.25425364,107.8,24.20734,28.817114,33.499508,10.755093,14.15221,17.139822,157.679794,150.152176,139.74498
nyu471339,587731185670946952,8.96586726,-0.48370339,2662,40,2,342,GALAXY,17.346607,5.518117E-3,16.495823,4.250429E-3,17.419035,9.128929E-3,16.570723,7.542634E-3,1394.13611,1151.63745,4.979782,15.357858,3.084042,4.6,28.25425337,107.8,18.318993,22.092337,26.179068,16.186459,21.64996,24.254978,40.30933,159.443466,110.278427
nyu471254,587731185670357186,7.58931235,-0.52270421,2662,40,2,333,GALAXY,17.145292,4.821708E-3,16.24169,3.720796E-3,17.160007,8.322909E-3,16.289371,6.500277E-3,1039.26501,886.813354,4.861189,14.241321,2.929596,4.6,28.25425311,107.8,21.732061,25.288792,26.45533,14.895257,17.183666,19.619841,39.345554,37.857845,36.323502
nyu471250,587731185670357170,7.5703755,-0.43563428,2662,40,2,333,GALAXY,16.622036,3.946637E-3,15.746887,3.177423E-3,16.767994,7.648134E-3,15.893021,8.50375E-3,1830.66345,714.438293,4.905569,13.574013,2.767062,4.6,28.25425311,107.8,22.632046,26.328928,30.29986,16.542227,21.561689,24.549246,32.001152,33.082005,47.997463
nyu471198,587731185669308570,5.14452446,-0.47077236,2662,40,2,317,GALAXY,17.030146,6.033273E-3,16.02434,4.315943E-3,16.879011,0.15361,15.999246,0.130025,1511.69861,439.282166,12.159348,38.773098,3.188748,4.6,28.25425237,107.8,72.868294,83.224274,87.403023,10.290951,12.160325,12.68605,142.338287,142.215668,142.418518
nyu471196,587731185669308555,5.12304964,-0.59438305,2662,40,2,317,GALAXY,17.666906,6.581842E-3,16.74085,4.799629E-3,17.744116,0.011322,16.81097,8.22602E-3,388.136749,244.365036,4.956759,14.68689,2.963002,4.6,28.25425237,107.8,16.009472,20.252333,23.531086,14.114792,18.399879,20.553291,162.17012,146.827972,146.471878
nyu471162,587731185669046386,4.55201829,-0.61329273,2662,40,2,313,GALAXY,17.473059,5.247443E-3,16.540125,4.11429E-3,17.499624,0.021486,16.616173,0.019433,216.085663,497.112488,3.224148,9.603357,2.978572,4.6,28.25425231,107.8,19.742826,25.11455,28.527885,11.60132,14.872901,16.759035,156.638794,150.142288,148.687912
nyu471159,587731185669046344,4.61705692,-0.57011162,2662,40,2,313,GALAXY,17.408745,5.791652E-3,16.530325,4.354954E-3,17.549788,0.087221,16.672218,0.051458,608.5271,1088.36792,4.230833,10.990499,2.597715,4.6,28.25425231,107.8,17.153465,20.99119,19.995945,12.44956,14.727334,17.05661,42.388935,19.021849,33.079773
nyu471132,587731185668915281,4.20575157,-0.4932391,2662,40,2,311,GALAXY,17.6516,7.526741E-3,16.779432,5.386716E-3,17.715891,0.012525,16.827444,9.63317E-3,1306.96033,70.850044,5.176929,16.068611,3.103888,4.6,28.25425235,107.8,22.060743,25.15122,28.694073,11.818232,14.693956,15.990388,52.991283,57.988251,53.712563
nyu471118,587731185668849907,4.17730946,-0.44543472,2662,40,2,310,GALAXY,15.570761,2.799398E-3,14.654133,2.336505E-3,15.600275,5.803154E-3,14.684015,9.214338E-3,1741.46729,1173.16199,11.020148,36.746964,3.334526,4.6,28.25425233,107.8,42.769192,54.299759,60.543781,37.930237,48.782333,55.349369,112.475937,100.637543,124.019836
nyu471116,587731185668849887,4.15907509,-0.4757167,2662,40,2,310,GALAXY,16.919533,4.660171E-3,15.984063,3.547552E-3,17.086473,0.033853,16.159691,0.031443,1466.24756,1007.49237,5.187978,15.926395,3.069866,4.6,28.25425233,107.8,33.148529,37.504547,39.490856,12.015745,14.931628,16.223961,31.049004,29.151209,29.676414
nyu471113,587731185668849851,4.1209109,-0.60740115,2662,40,2,310,GALAXY,15.933458,3.307359E-3,14.98592,2.607751E-3,16.003363,5.128849E-3,15.077931,4.094312E-3,269.305176,660.856079,10.559497,33.272961,3.150999,4.6,28.25425233,107.8,35.570267,46.607254,50.464245,32.809223,41.902065,46.354923,133.373749,136.586319,122.711472
nyu471112,587731185668849843,4.10723351,-0.43433553,2662,40,2,310,GALAXY,18.311567,9.717183E-3,17.342819,7.364307E-3,18.258869,0.032661,17.300177,0.033003,1842.31055,536.138672,4.602802,12.962874,2.816301,4.6,28.25425233,107.8,18.63365,25.148943,24.321846,6.769066,6.949473,7.475174,34.688274,32.772484,32.444923
nyu471109,587731185668849821,4.09041545,-0.57455904,2662,40,2,310,GALAXY,16.132196,3.393829E-3,15.236669,2.749307E-3,16.238239,5.944602E-3,15.353484,4.951505E-3,567.750366,383.600311,7.332196,23.575134,3.21529,4.6,28.25425233,107.8,32.040798,41.398418,47.600182,27.822262,33.761528,37.221939,173.214615,174.205109,2.365587
nyu471080,587731185668653250,3.71682713,-0.54017394,2662,40,2,307,GALAXY,18.783173,0.012365,17.788445,8.328386E-3,18.739988,0.032263,17.749762,0.02765,880.659058,1070.71741,4.660416,12.900016,2.767997,4.6,28.254252,107.8,19.323772,24.15251,26.730421,6.535864,8.140071,9.265794,37.469997,38.096592,38.939598
nyu471067,587731185668522148,3.43255084,-0.45992976,2662,40,2,305,GALAXY,15.95169,3.295431E-3,15.117308,2.783467E-3,16.133923,0.018607,15.331865,0.015736,1610.2135,1208.44934,7.99651,22.03727,2.755861,4.6,28.25425182,107.8,66.26693,72.22702,80.009613,15.303682,17.931585,19.772646,23.323692,23.712982,23.004208
nyu471015,587731185668128886,2.42152433,-0.53122998,2662,40,2,299,GALAXY,16.75741,4.577154E-3,15.942622,3.566955E-3,16.620573,0.037434,15.833782,0.034556,961.766357,183.80545,8.506858,25.960415,3.051704,4.6,28.25425144,107.8,51.201012,53.108917,55.405685,11.717196,14.594735,16.876509,45.735638,47.237659,45.621475
nyu470998,587731185668063352,2.29824182,-0.61520491,2662,40,2,298,GALAXY,16.786253,5.127431E-3,15.805106,3.712476E-3,16.905226,0.012486,15.937117,0.010192,198.366287,424.141968,9.371294,27.97266,2.98493,4.6,28.25425147,107.8,26.745653,33.617348,40.464531,21.722664,30.783415,36.402645,80.338005,135.274948,166.852615
nyu470995,587731185668063336,2.2648684,-0.58253664,2662,40,2,298,GALAXY,17.655617,5.903931E-3,16.697502,4.41683E-3,17.748737,0.028968,16.805426,0.026805,495.148956,120.666283,3.551353,10.388426,2.925202,4.6,28.25425147,107.8,20.283829,23.991617,23.579746,7.353241,9.315568,13.343144,58.502968,56.555851,67.093536
nyu470977,587731185667932260,1.96387337,-0.45257193,2662,40,2,296,GALAXY,17.767267,6.224209E-3,16.843945,4.72218E-3,17.839731,8.267664E-3,16.912855,5.951228E-3,1676.33789,105.828056,3.072839,8.492416,2.763703,4.6,28.25425143,107.8,12.979633,16.774673,18.195583,10.295942,12.263099,14.10108,166.949387,161.324951,127.041634
nyu470927,587731185667670168,1.44089133,-0.54271691,2662,40,2,292,GALAXY,17.1919,5.055496E-3,16.35795,4.034445E-3,17.220543,0.017267,16.422819,0.014093,857.001648,795.733948,5.123876,15.879529,3.099124,4.6,28.25425107,107.8,20.586075,24.317377,29.224258,17.901546,21.099384,24.470858,131.820068,133.214111,134.543533
nyu470896,587731185667407966,0.83576456,-0.52668032,2662,40,2,288,GALAXY,18.19656,9.330687E-3,17.295109,6.896523E-3,18.31443,0.020179,17.443548,0.018423,1002.73633,738.443359,5.06402,14.151916,2.794601,4.6,28.25425088,107.8,15.896194,18.806606,20.405165,9.073471,12.727582,16.357679,78.817398,80.183311,84.05069
nyu470844,587731185667080368,0.11656789,-0.44818174,2662,40,2,283,GALAXY,17.708736,6.726475E-3,16.782339,4.890201E-3,17.890472,0.010881,16.951662,8.160823E-3,1716.08386,1005.09558,4.22294,11.521247,2.728253,4.6,28.25425058,107.8,15.519153,20.49688,24.332031,11.009215,15.248857,17.200583,44.246552,49.236774,40.120876
nyu470828,587731185666949276,359.812296,-0.50750999,2662,40,2,281,GALAXY,17.498745,6.06577E-3,16.548956,4.373487E-3,17.59057,9.7583E-3,16.654772,7.259474E-3,1176.6637,961.157898,4.545409,13.423788,2.953263,4.6,28.2542505,107.8,17.604576,20.990652,22.956587,15.150482,17.360718,20.022612,162.429153,145.427597,141.048798
nyu470679,587731185665966217,357.52619944,-0.46917501,2662,40,2,266,GALAXY,16.294365,4.293127E-3,15.429501,4.811498E-3,16.384417,0.018272,15.52874,0.018222,1525.3938,594.021973,5.917621,18.062517,3.052328,4.6,28.2542499,107.8,29.297586,32.666977,37.403015,19.525721,25.739273,27.855833,174.691589,172.670303,163.554642
nyu470661,587731185665704106,356.94223191,-0.49599804,2662,40,2,262,GALAXY,17.259008,5.3993E-3,16.305914,4.040842E-3,17.288689,0.010636,16.338661,9.297749E-3,1281.32422,729.319031,5.582441,18.223797,3.264485,4.6,28.25424981,107.8,21.293465,25.958912,28.784866,18.003368,23.228367,25.719133,178.132156,8.571824,7.915105
nyu470635,587731185665441905,356.31169545,-0.46009684,2662,40,2,258,GALAXY,18.571356,0.011111,17.627186,8.088408E-3,18.540627,0.021491,17.599251,0.015788,1607.37646,441.335724,4.769617,12.656813,2.653633,4.6,28.25424973,161.7,18.458725,24.112692,21.096046,5.827638,6.30452,8.287515,136.394043,131.250031,132.793686
nyu470613,587731185665114273,355.62231373,-0.61326425,2662,40,2,253,GALAXY,17.82592,8.015452E-3,16.894512,5.511347E-3,17.863159,0.014004,16.94207,9.824826E-3,215.181122,979.247925,5.173169,14.703899,2.842339,4.6,28.25424956,107.8,16.86282,20.257557,21.620884,13.938173,16.837404,19.76679,82.200623,60.308609,112.316566
nyu470566,587731185664786640,354.88099906,-0.47383635,2662,40,2,248,GALAXY,17.348087,5.856296E-3,16.462717,4.484358E-3,17.342928,0.013715,16.51565,0.012766,1482.146,1044.96265,6.183499,17.735456,2.868191,4.6,28.25424943,107.8,20.850706,22.640434,24.00145,19.565956,22.22892,23.117222,163.850708,93.870689,37.703323
nyu470559,587731185664786569,354.81145523,-0.44617091,2662,40,2,248,GALAXY,16.247007,3.724405E-3,15.307426,2.908719E-3,16.320906,7.394957E-3,15.394542,5.643757E-3,1733.56616,412.635254,9.402325,29.206791,3.106337,4.6,28.25424943,107.8,31.89677,42.550583,49.030331,27.177969,34.650093,41.923626,30.114447,44.570007,56.504101
nyu470558,587731185664786561,354.80352689,-0.47025669,2662,40,2,248,GALAXY,17.986036,9.426383E-3,17.067135,6.777523E-3,18.338526,0.047673,17.371302,0.154873,1514.66418,340.622345,5.070407,14.620677,2.883531,4.6,28.25424943,107.8,19.776312,28.520023,21.300341,7.583542,10.215254,11.893555,2.700581,7.874821,9.155508
nyu470547,587731185664721050,354.65907802,-0.57263674,2662,40,2,247,GALAXY,18.335732,0.01202,17.528549,8.638479E-3,18.263885,0.0229,17.422962,0.024943,584.079468,388.735931,6.508414,18.706245,2.874163,4.6,28.25424935,107.8,19.793701,27.954868,30.257746,9.238169,11.120392,11.399375,148.216202,146.67804,146.448975
nyu470540,587731185664655538,354.5879566,-0.60755326,2662,40,2,246,GALAXY,19.448578,0.01791,17.705635,7.109109E-3,19.26594,0.148974,17.703787,0.038879,266.861053,1103.23999,3.207861,10.405729,3.243821,4.6,28.25424929,107.8,11.16584,16.991804,20.276752,6.378047,12.317669,13.413595,83.192856,83.765038,80.731834
nyu470503,587731185664393374,353.94013553,-0.53748615,2662,40,2,242,GALAXY,17.228901,5.257468E-3,16.308044,3.969348E-3,17.293264,0.010511,16.372946,9.018065E-3,903.507813,657.916565,5.116087,16.841709,3.291912,4.6,28.25424907,107.8,19.666933,26.227472,30.739048,18.616892,24.109158,27.905762,96.997421,127.828423,148.367325
nyu470483,587731185664262214,353.67006952,-0.42714676,2662,40,2,240,GALAXY,16.129311,3.916579E-3,15.322697,3.21833E-3,16.386396,0.014335,15.591653,7.539944E-3,1906.49719,924.218506,9.599124,24.742769,2.577607,4.6,28.25424895,107.8,33.713417,43.828819,54.400242,21.880497,25.331936,29.657061,156.845718,157.624207,156.823318
nyu470469,587731185664196742,353.43079196,-0.56957709,2662,40,2,239,GALAXY,15.927671,3.282484E-3,15.079212,2.744794E-3,15.949384,6.247445E-3,15.161348,3.504594E-3,611.855042,110.553818,10.636414,29.692234,2.791564,4.6,28.25424882,107.8,35.272888,40.913918,45.318451,34.657883,37.62883,38.072449,70.40596,59.659245,61.580048
nyu470461,587731185664131137,353.32793617,-0.45014737,2662,40,2,238,GALAXY,15.183034,2.659022E-3,14.242652,2.185554E-3,15.269494,4.719383E-3,14.337192,4.214002E-3,1697.30908,536.256287,17.945637,54.381744,3.03036,4.6,28.25424875,107.8,62.408184,84.316338,96.759628,41.824146,51.572983,56.633862,107.423073,108.625847,110.194473
nyu470453,587731185664065679,353.17020655,-0.56326705,2662,40,2,237,GALAXY,16.541069,4.503498E-3,15.580947,3.385239E-3,16.712635,8.009992E-3,15.77714,6.073617E-3,668.8125,463.718719,9.313236,27.509027,2.953756,4.6,28.25424871,107.8,27.191927,34.671333,41.001785,23.937128,31.305523,35.461926,134.695602,137.160629,108.87458
nyu470443,587731185664000225,353.1258297,-0.49082885,2662,40,2,236,GALAXY,16.332417,3.629403E-3,15.418207,2.911352E-3,16.474842,0.017751,15.555464,0.016333,1327.25647,1421.08728,6.378368,20.075251,3.147396,4.6,28.25424866,107.8,33.822964,44.767471,46.040779,19.508869,25.606548,29.401354,15.516931,16.696844,11.705862
nyu470442,587731185664000187,353.07295121,-0.52902696,2662,40,2,236,GALAXY,16.917471,4.569016E-3,16.028175,3.599381E-3,17.102171,0.010915,16.216961,9.649479E-3,980.018005,940.442139,5.033106,13.91126,2.763951,4.6,28.25424866,107.8,36.11916,42.697182,43.110867,12.676583,15.39037,17.723711,5.323117,8.564486,8.11413
nyu470262,587731185661771958,347.99734235,-0.59079728,2662,40,2,202,GALAXY,17.564074,5.330282E-3,16.701078,4.274101E-3,17.608671,9.90619E-3,16.77055,9.272791E-3,418.106262,1072.69031,2.8356,7.757173,2.735637,4.6,28.25424626,107.8,14.992591,18.15243,21.729715,10.989942,14.230413,18.259125,44.117485,49.503426,42.550667
nyu470167,587731185660723381,345.51322022,-0.45244118,2662,40,2,186,GALAXY,17.94976,8.167799E-3,17.03335,7.825311E-3,18.024153,0.010954,17.105062,8.645259E-3,1675.93982,265.684448,3.2562,9.11824,2.80027,4.6,28.25424544,107.8,13.336636,18.094454,20.461937,10.194494,11.646263,13.014909,20.526054,15.532133,10.464133
nyu470082,587731185659936903,343.72263097,-0.54351561,2662,40,2,174,GALAXY,18.27586,9.952961E-3,17.278027,6.726941E-3,18.392839,0.020001,17.424671,0.013679,848.381409,320.036469,4.936024,13.984554,2.833162,4.6,28.25424479,107.8,18.492132,21.381613,24.852327,8.985852,10.78297,11.99407,144.647812,143.178085,147.336182
nyu470080,587731185659936927,343.74009138,-0.47559241,2662,40,2,174,GALAXY,17.975628,7.033923E-3,16.976244,5.007712E-3,18.046402,0.016922,17.069822,0.015517,1465.80603,478.577209,3.483357,10.101161,2.899835,4.6,28.25424479,107.8,15.802975,19.799149,24.489258,9.353781,12.933506,13.734426,68.183273,60.909477,63.567852
nyu470074,587731185659871384,343.64468163,-0.57106473,2662,40,2,173,GALAXY,16.450277,4.231303E-3,15.428562,3.077087E-3,16.489697,8.333566E-3,15.467226,6.222654E-3,597.985962,972.613281,11.130826,34.435955,3.093747,4.6,28.25424461,107.8,31.79355,44.96085,51.388367,27.767385,35.331993,41.153625,15.952241,0.2854,174.86937
nyu470073,587731185659871385,343.64425696,-0.58025134,2662,40,2,173,GALAXY,17.056173,5.345582E-3,15.965241,3.666312E-3,17.102081,0.010595,16.030291,6.41977E-3,514.490417,968.769348,7.769197,21.571758,2.776575,4.6,28.25424461,107.8,26.067316,29.864923,33.221066,19.640848,23.770597,26.901917,54.871872,46.611008,47.394489
nyu470071,587731185659871370,343.6246851,-0.4967147,2662,40,2,173,GALAXY,17.634716,9.164742E-3,16.714123,7.596171E-3,17.724619,0.019608,16.823864,0.014241,1273.85034,790.678711,8.66041,23.447832,2.707474,4.6,28.25424461,107.8,20.140991,25.154171,28.985142,17.008917,22.946159,26.673433,156.548309,128.094757,157.426346
nyu470026,587731185659281605,342.27027434,-0.49632159,2662,40,2,164,GALAXY,17.840172,7.390407E-3,16.878702,5.235835E-3,17.874323,0.015008,16.926687,9.965367E-3,1277.5293,727.194031,5.513833,14.718579,2.669392,4.6,28.25424382,107.8,18.641062,19.379808,21.516062,13.703909,17.050825,18.969591,41.263874,38.230198,31.562843
nyu469955,587731185658560676,340.57161758,-0.5711745,2662,40,2,153,GALAXY,17.287527,5.488677E-3,16.26605,3.918895E-3,17.313616,9.443894E-3,16.319235,6.595809E-3,597.143188,255.94487,5.593005,17.257748,3.085595,4.6,28.25424299,107.8,20.066696,24.088226,27.608189,17.128311,21.392084,25.493113,39.861664,26.519861,4.16222
nyu469942,587731185658429669,340.33428559,-0.53259855,2662,40,2,151,GALAXY,16.864756,4.37224E-3,15.97557,3.504452E-3,16.904745,0.112341,16.04883,0.222835,947.876526,820.130859,5.180967,14.922849,2.880321,4.6,28.25424289,107.8,19.437853,23.122217,-9999,18.731979,22.017706,-9999,54.919228,128.412994,-9999
nyu469931,587731185658364120,340.2128206,-0.47467011,2662,40,2,150,GALAXY,17.153336,4.73491E-3,16.209301,3.649861E-3,17.224047,9.520791E-3,16.301876,8.167403E-3,1474.49023,1076.80945,3.845595,11.844273,3.079958,4.6,28.25424279,107.8,21.028839,29.73576,33.679214,15.446699,21.269701,26.624203,35.419769,33.579529,31.794977
nyu469841,587731185657839872,339.0098672,-0.47076781,2662,40,2,142,GALAXY,17.517565,6.555831E-3,16.643585,4.873199E-3,17.726994,0.017082,16.856966,0.012431,1510.16895,1028.47864,5.040876,13.957878,2.768939,4.6,28.25424241,107.8,21.647375,23.8538,25.677778,9.361708,11.049199,12.655114,29.450758,28.789253,27.076788
nyu469838,587731185657839828,338.97113001,-0.43364061,2662,40,2,142,GALAXY,16.311174,3.663504E-3,15.327328,2.841831E-3,16.334023,8.031708E-3,15.373825,6.538404E-3,1847.57422,676.3302,7.921244,26.792931,3.382415,4.6,28.25424241,107.8,30.880461,41.752869,47.634571,29.487957,37.459225,41.33403,89.382484,99.125793,84.232109
nyu469799,587731185657577541,338.37746918,-0.51427488,2662,40,2,138,GALAXY,17.113207,5.536212E-3,16.209677,4.111318E-3,17.125681,0.012053,16.2188,8.27241E-3,1114.59973,723.736206,8.431679,26.691046,3.165567,4.6,28.2542422,107.8,26.72616,32.95937,37.044655,19.404005,26.230951,30.367149,78.657692,84.593231,83.296387
nyu469718,587731185656922369,336.8652555,-0.60522582,2662,40,2,128,GALAXY,16.873438,4.724102E-3,15.880144,3.507495E-3,17.00843,0.10662,16.044197,0.090175,287.801544,586.499878,5.857852,18.8904,3.2248,4.6,28.25424174,107.8,35.551651,37.618763,48.483219,9.792158,12.355762,13.232837,153.982162,152.389404,149.311356
nyu469663,587731185656529112,336.01009167,-0.52219523,2662,40,2,122,GALAXY,18.01421,7.443103E-3,17.01379,5.183113E-3,18.105827,0.012821,17.105728,8.684563E-3,1042.69849,978.054871,3.948421,11.008172,2.787993,4.6,28.25424143,107.8,14.208529,18.297468,21.658657,9.915379,13.606326,14.703707,17.536058,10.882901,16.669443
nyu469568,587731185655480530,333.54523734,-0.46771294,2662,40,2,106,GALAXY,16.537586,4.557147E-3,15.605907,3.267193E-3,16.476854,0.032857,15.603526,0.029611,1537.698,346.208069,9.73066,26.277622,2.700497,4.6,28.25424013,107.8,48.227139,54.481499,63.637646,14.06821,16.005802,18.380457,138.655014,139.010437,140.023865
nyu469423,587731185654497592,331.34346368,-0.49573708,2662,40,2,91,GALAXY,15.957352,3.301609E-3,15.12962,2.719261E-3,16.120729,7.014557E-3,15.286829,6.56618E-3,1282.73584,744.11908,8.480868,26.202694,3.089624,4.6,28.25423903,107.8,35.223698,45.288853,50.923992,25.909245,33.191177,37.918884,10.678638,14.687599,15.423919
nyu469109,587731185652072755,325.7495957,-0.44550318,2662,40,2,54,GALAXY,18.064262,9.451549E-3,17.17522,6.883171E-3,18.20088,0.018165,17.362711,0.014301,1739.2229,246.910904,5.490154,15.721599,2.863599,4.6,28.25423713,107.8,14.204146,17.805565,20.996201,13.69465,15.688845,18.565039,102.039757,113.249863,100.134438
nyu469084,587731185651876114,325.41848455,-0.60100174,2662,40,2,51,GALAXY,17.231426,5.433049E-3,16.356049,4.176062E-3,17.333815,9.8003E-3,16.430317,6.534091E-3,325.92038,1320.10986,5.934377,16.520422,2.783851,4.6,28.25423687,107.8,22.97896,25.709583,28.567373,13.332067,16.574076,16.594233,83.999184,88.438072,80.127792
nyu469065,587731185651679677,324.94653713,-0.54112145,2662,40,2,48,GALAXY,17.485678,5.972949E-3,16.57399,4.490713E-3,17.630674,0.022192,16.720926,0.022862,870.469482,1112.2229,4.646391,13.869182,2.984936,4.6,28.25423658,107.8,24.449675,24.573004,29.172108,8.152748,9.619909,10.781733,58.426311,62.445381,62.568737
nyu469046,587731185651614098,324.6866957,-0.53233734,2662,40,2,47,GALAXY,18.092041,7.4346E-3,17.17765,5.443495E-3,18.167822,0.031109,17.297523,0.011623,950.336182,111.22068,3.156685,8.374621,2.65298,4.6,28.25423642,107.8,14.841292,16.117331,18.647331,8.897115,9.087561,10.59465,117.600708,144.545822,131.375839
nyu468992,587731185651155402,323.75165176,-0.5114332,2662,40,2,40,GALAXY,15.518542,2.929277E-3,14.68666,2.474464E-3,15.592852,5.119991E-3,14.783211,4.131965E-3,1140.21118,1137.09241,14.280137,42.405617,2.969553,4.6,28.25423593,107.8,48.494461,56.222397,61.644184,36.367241,46.356033,48.497368,90.780289,89.935753,95.643799
nyu468904,587731185650565167,322.30575352,-0.52388539,2662,40,2,31,GALAXY,15.887469,3.040467E-3,14.979977,2.625119E-3,15.958759,0.040881,15.080462,0.037263,1027.41858,241.333405,6.223434,19.949884,3.205607,4.6,28.254235,107.8,41.715816,45.440392,47.723316,14.983934,18.088356,27.098864,166.979675,168.715622,166.585327
nyu468903,587731185650565143,322.30215239,-0.62174374,2662,40,2,31,GALAXY,15.611923,2.759484E-3,14.682778,2.402665E-3,15.676063,0.012126,14.772481,0.010746,138.00914,208.756378,6.512873,19.914698,3.057744,4.6,28.254235,107.8,38.186398,46.388,51.052425,23.922037,29.840519,35.054039,149.029404,157.173111,169.437057
nyu468883,587731185650369107,321.95172946,-0.60785977,2662,40,2,28,GALAXY,18.170021,7.445556E-3,17.236971,5.419554E-3,18.062017,0.01534,17.160957,0.018675,264.243896,1105.93372,3.992955,11.094918,2.778623,4.6,28.25423472,107.8,16.043646,20.240616,20.690262,7.898995,9.42119,11.333086,121.757439,125.02211,120.989647
nyu468882,587731185650368982,321.87968169,-0.54726328,2662,40,2,28,GALAXY,17.419813,6.503593E-3,16.544098,4.922443E-3,17.566021,0.014365,16.753494,0.013803,814.985657,450.847626,5.840061,16.289875,2.789333,4.6,28.25423472,107.8,18.060616,21.170616,24.856087,17.13854,19.739075,20.51935,61.454758,152.031128,150.993805
nyu468821,587731185649779360,320.6283413,-0.54964364,2662,40,2,19,GALAXY,17.886688,6.923042E-3,16.985836,5.145888E-3,17.96722,0.010068,17.089144,7.510308E-3,793.588806,1323.60327,3.404937,9.798522,2.87774,4.6,28.2542339,107.8,13.3871,17.964411,22.300707,12.453718,16.102571,19.89801,9.336133,148.953262,164.682983
nyu466084,587731185136631940,14.82764723,-0.98797189,2662,40,1,381,GALAXY,16.33687,3.9282E-3,15.484476,2.961093E-3,16.375105,0.010331,15.559257,8.798753E-3,626.305115,1358.42285,7.990293,24.440775,3.058809,4.71,28.27395285,107.8,33.974785,42.730732,48.76865,20.515308,25.481295,30.967291,17.863117,18.326834,23.199713
nyu466070,587731185136500861,14.45308326,-1.00404526,2662,40,1,379,GALAXY,16.900145,4.657629E-3,16.058275,3.464545E-3,16.943472,7.647296E-3,16.092573,4.757877E-3,480.026733,675.361145,5.317863,15.932774,2.996086,4.71,28.2739528,107.8,21.506155,23.73237,27.607222,17.602171,20.729982,22.353285,83.581535,65.059799,75.567314
nyu466068,587731185136500844,14.41600552,-0.89252654,2662,40,1,379,GALAXY,17.221724,5.414871E-3,16.361353,3.982698E-3,17.319159,0.020488,16.446379,0.019429,1493.91821,338.194366,3.762751,10.916702,2.901255,4.71,28.2739528,107.8,19.940321,22.376913,25.389814,9.538789,12.48822,12.645617,86.383636,84.632385,89.964012
nyu466057,587731185136435349,14.29448896,-1.01879706,2662,40,1,378,GALAXY,16.177626,3.627831E-3,15.313526,2.77685E-3,16.246805,7.154822E-3,15.360331,5.181786E-3,346.176666,594.692871,7.894321,26.073893,3.302867,4.71,28.27395275,107.8,36.360283,42.683605,46.159969,22.98357,28.059673,30.53285,57.752907,56.55468,59.904694
nyu466055,587731185136435335,14.27048774,-0.91917386,2662,40,1,378,GALAXY,16.594334,4.019087E-3,15.682404,3.028643E-3,16.724182,5.819673E-3,15.809136,4.252584E-3,1251.84851,376.416718,4.673877,12.775658,2.733418,4.71,28.27395275,107.8,20.037861,24.595491,26.540289,16.051989,18.865562,22.142807,37.666569,30.141687,34.334095
nyu466053,587731185136435323,14.38276036,-0.92783009,2662,40,1,378,GALAXY,16.86763,4.426875E-3,16.005762,3.355731E-3,17.005054,0.070651,16.157976,0.013363,1172.93604,1397.03943,3.843298,10.858479,2.825303,4.71,28.27395275,107.8,31.191456,37.941647,41.219501,11.500999,13.111897,14.781199,125.042976,133.065384,136.788116
nyu466051,587731185136435249,14.30731166,-1.01224871,2662,40,1,378,GALAXY,15.933633,3.108087E-3,15.047626,2.530922E-3,16.054783,8.36997E-3,15.18224,7.927816E-3,405.657013,711.248108,5.201969,15.29076,2.939418,4.71,28.27395275,107.8,32.151325,43.565166,48.746708,22.230211,24.881062,29.293869,40.455547,43.133907,33.078659
nyu466050,587731185136435218,14.26270468,-0.87357879,2662,40,1,378,GALAXY,17.139877,6.331939E-3,16.180376,4.096174E-3,16.727392,0.372471,15.659199,0.322304,1666.43909,305.662323,20.446846,61.169342,2.991627,4.71,28.27395275,107.8,34.127026,56.291386,67.18454,27.580065,42.543686,43.097832,47.992073,27.800035,28.467136
nyu466048,587731185136435215,14.25854018,-0.87519822,2662,40,1,378,GALAXY,14.397247,2.153389E-3,13.492585,1.831559E-3,14.555956,9.862119E-3,13.642463,9.933997E-3,1651.72095,267.803101,15.1271,47.42387,3.135027,4.71,28.27395275,107.8,66.488548,82.167961,95.363899,51.368008,64.563828,69.411102,32.436508,34.010082,37.496849
nyu466036,587731185136369811,14.1962333,-0.87809663,2662,40,1,377,GALAXY,16.709425,4.214424E-3,15.875795,3.282242E-3,16.753628,0.020046,15.918077,0.019515,1625.51721,1062.41321,4.459921,14.44864,3.239662,4.71,28.27395267,107.8,27.788965,31.326012,-9999,12.324527,14.870994,-9999,95.729385,98.727806,-9999
nyu466035,587731185136369804,14.185622,-0.87484043,2662,40,1,377,GALAXY,16.5429,4.734656E-3,15.707148,3.426246E-3,16.707226,8.952105E-3,15.890347,5.626599E-3,1655.14685,965.967468,8.23758,24.501835,2.974397,4.71,28.27395267,107.8,28.156536,33.321182,35.190201,22.564995,27.001595,29.408304,141.271225,143.582565,155.756607
nyu466030,587731185136369746,14.09812116,-0.98690223,2662,40,1,377,GALAXY,15.871846,3.169891E-3,14.992337,2.511757E-3,15.971918,0.011519,15.113678,0.010651,636.47876,170.722809,7.242898,23.693342,3.271252,4.71,28.27395267,107.8,37.762085,49.751598,55.461979,25.617229,30.300348,36.588345,157.722641,161.623886,162.158905
nyu466027,587731185136369792,14.17036572,-1.03452838,2662,40,1,377,GALAXY,16.490881,3.806829E-3,15.588432,2.945787E-3,16.557943,0.010206,15.681617,8.508701E-3,203.518646,827.420898,4.980976,15.881323,3.188396,4.71,28.27395267,107.8,26.225143,31.261843,36.615246,21.142382,24.434267,27.708195,46.005402,38.037926,44.917934
nyu466012,587731185136304238,13.97325642,-0.90106167,2662,40,1,376,GALAXY,16.83757,4.774946E-3,16.007376,3.520167E-3,16.922798,0.021631,16.079285,0.022418,1416.9823,396.661804,4.063307,13.069427,3.216451,4.71,28.27395256,107.8,26.277882,28.494476,32.285275,12.552219,15.96677,16.180546,85.92662,82.611549,90.690941
nyu466011,587731185136304142,13.97600072,-0.9225411,2662,40,1,376,GALAXY,16.548721,5.138083E-3,15.695436,3.614894E-3,16.334305,0.196473,15.412513,0.200718,1221.67188,421.612396,20.35214,54.200466,2.663133,4.71,28.27395256,107.8,50.954269,63.348381,69.203835,29.522064,41.754646,45.285912,11.826625,13.895793,13.619769
nyu466010,587731185136304141,13.97725817,-0.92065468,2662,40,1,376,GALAXY,15.039592,2.556179E-3,14.099274,2.059609E-3,15.153015,0.02441,14.225698,0.023418,1238.81995,433.039398,12.250232,40.067005,3.270714,4.71,28.27395256,107.8,59.19595,78.52079,84.695869,40.118351,51.305824,59.211582,179.967346,0.560366,175.555939
nyu465998,587731185136238733,13.82034982,-0.917951,2662,40,1,375,GALAXY,15.68366,3.078972E-3,14.875637,2.520747E-3,15.637531,0.040071,14.84446,0.03885,1263.40466,367.758148,10.653612,30.86376,2.897023,4.71,28.27395252,107.8,76.785049,95.197693,94.973083,18.365602,21.523876,25.313591,97.494019,98.659279,96.890594
nyu465996,587731185136238599,13.78735054,-1.04648391,2662,40,1,375,GALAXY,15.25999,2.749662E-3,14.36299,2.199143E-3,15.402226,4.433409E-3,14.509077,3.503784E-3,95.087181,67.912483,12.53717,38.246117,3.050618,4.71,28.27395252,107.8,45.912678,-9999,-9999,42.098366,-9999,-9999,66.212837,-9999,-9999
nyu465977,587731185136107627,13.60902158,-0.9282207,2662,40,1,373,GALAXY,16.338861,4.469445E-3,15.552995,3.390998E-3,16.562048,0.013134,15.791368,0.012266,1169.78223,1168.73608,9.692326,26.468168,2.730838,4.71,28.27395254,161.7,41.740696,47.010643,50.392071,15.669773,19.558182,21.940151,38.561485,38.421165,39.374027
nyu465966,587731185136042048,13.4452561,-0.88313774,2662,40,1,372,GALAXY,16.792858,4.466241E-3,15.950839,3.372656E-3,16.871874,0.012532,16.030169,0.012063,1579.62,1040.94519,5.250218,16.459717,3.135054,4.71,28.2739525,161.7,24.929491,29.937067,33.741524,16.163031,20.63422,23.836662,57.635445,57.732777,49.417744
nyu465929,587731185135779987,12.82842411,-0.85981014,2662,40,1,368,GALAXY,16.976084,5.016563E-3,16.107164,3.662342E-3,16.992098,0.029724,16.160151,0.028992,1791.63379,877.565369,5.940705,19.845545,3.340604,4.71,28.2739524,161.7,25.319847,33.948204,36.830097,20.284369,25.330492,28.457888,90.441986,93.715302,86.711983
nyu465900,587731185135517812,12.23718846,-0.92170167,2662,40,1,364,GALAXY,17.062618,5.134483E-3,16.239222,3.781694E-3,17.145323,0.019032,16.324156,0.016015,1229.323,946.930664,5.115172,16.511278,3.227903,4.71,28.27395216,107.8,24.468237,29.767191,32.88805,16.00083,20.944664,24.581831,109.542137,115.631371,115.321693
nyu465843,587731185135255683,11.59918291,-0.90218581,2662,40,1,360,GALAXY,17.551186,6.213766E-3,16.619778,4.292561E-3,17.639053,9.67998E-3,16.732967,6.35103E-3,1406.19653,591.15802,3.998337,11.582235,2.896763,4.71,28.27395209,107.8,16.016607,21.727859,25.27681,13.734524,17.534405,20.055065,112.723137,118.88472,115.767776
nyu465787,587731185135059131,11.17397961,-0.91302307,2662,40,1,357,GALAXY,17.157255,5.425927E-3,16.217798,3.785294E-3,17.134583,8.948888E-3,16.219856,5.29151E-3,1307.58728,808.370483,5.323748,14.967521,2.811463,4.71,28.27395206,107.8,19.354757,22.783478,25.443699,16.431267,19.276005,21.024208,38.576904,50.916668,38.327503
nyu46570,588015510366388263,53.17771424,1.02032851,3325,41,6,463,GALAXY,15.995847,3.214494E-3,15.147663,2.609187E-3,16.121601,4.359745E-3,15.26582,3.514549E-3,1754.1283,659.668823,6.324383,18.747971,2.964396,4.895,28.08835416,53.9,29.722324,40.149666,44.55035,26.137693,32.867153,36.228664,38.405342,17.801653,32.057247
nyu465661,587731185133879422,8.46449652,-0.84124928,2662,40,1,339,GALAXY,17.379974,5.916246E-3,16.469316,4.011524E-3,17.448393,0.014452,16.560469,0.013227,1960.38733,675.557495,3.2628,9.462677,2.900171,4.71,28.27395088,107.8,16.754091,22.644033,21.387323,10.559531,12.807167,16.016632,104.837311,114.058441,109.069427
nyu465638,587731185133748296,8.11543649,-0.92410743,2662,40,1,337,GALAXY,16.93891,5.28802E-3,15.978362,3.59802E-3,17.112835,0.024016,16.172737,0.021338,1206.86279,224.732407,5.81402,17.70899,3.045911,4.71,28.27395078,107.8,32.842957,40.62167,44.322079,12.054032,13.629337,15.604714,45.51461,42.929798,44.363163
nyu465611,587731185133486290,7.63953344,-0.91197966,2662,40,1,333,GALAXY,17.74612,0.011498,16.860193,7.640295E-3,17.655014,0.027597,16.841181,0.030209,1316.96448,1342.31409,10.33075,28.198486,2.729568,4.71,28.27395072,161.7,37.183552,42.667465,43.479034,9.262511,10.501637,13.253318,51.999317,48.820675,49.118069
nyu465591,587731185133355176,7.30917571,-1.01933857,2662,40,1,331,GALAXY,16.543879,4.427611E-3,15.635666,3.182536E-3,16.581717,0.010366,15.675434,5.475523E-3,341.307312,1061.35547,9.001672,28.535164,3.169985,4.71,28.2739506,161.7,35.219559,43.480682,45.924839,21.705997,27.925833,29.592289,27.524176,28.393095,28.681049
nyu465570,587731185133224063,6.98728078,-0.93446143,2662,40,1,329,GALAXY,17.151735,6.132264E-3,16.214954,5.23875E-3,17.246624,0.026812,16.335709,0.022535,1112.77332,857.319519,4.336261,12.911999,2.97768,4.71,28.27395049,161.7,23.621656,27.296331,30.901564,9.975293,12.003695,15.661087,173.519302,173.803711,173.047836
nyu465555,587731185133158413,6.78149688,-0.8417347,2662,40,1,328,GALAXY,15.961439,4.498717E-3,15.01787,3.18144E-3,16.244118,0.030292,15.398592,0.027446,1955.81128,347.629639,12.140096,34.54726,2.845716,4.71,28.27395053,161.7,56.625797,63.234497,64.619347,19.731991,23.124142,26.566902,165.644547,159.825562,159.131561
nyu465544,587731185133027454,6.55960567,-0.93230158,2662,40,1,326,GALAXY,17.148449,4.917008E-3,16.301044,3.691988E-3,17.239237,6.934701E-3,16.39879,5.054869E-3,1132.37671,1052.54993,3.774571,11.095586,2.939562,4.71,28.27395042,161.7,19.233732,23.402431,29.054581,14.451872,18.930574,19.681606,127.108047,129.117554,141.341629
nyu465531,587731185132961882,6.35349345,-1.04874318,2662,40,1,325,GALAXY,17.548626,6.18548E-3,16.684004,4.459506E-3,17.616346,0.011431,16.754284,7.782708E-3,74.234016,540.180969,3.908005,10.9978,2.814173,4.71,28.2739503,161.7,17.565517,19.915577,20.898273,10.704873,12.324634,14.310734,160.837158,167.179291,165.370529
nyu465511,587731185132830864,6.12337696,-0.9304308,2662,40,1,323,GALAXY,16.681242,4.943551E-3,15.762263,3.402475E-3,16.870171,8.628301E-3,15.95502,5.987162E-3,1149.55566,1170.23792,7.121194,20.815466,2.923031,4.71,28.27395026,161.7,22.9398,31.558764,35.592571,22.133467,27.420488,30.618544,176.182861,74.503654,72.052704
nyu465510,587731185132830863,6.12988565,-0.92286713,2662,40,1,323,GALAXY,16.190517,3.867815E-3,15.381958,2.935112E-3,16.270838,6.970241E-3,15.461493,4.78431E-3,1218.33777,1229.40588,9.634069,27.280519,2.831671,4.71,28.27395026,161.7,32.184505,38.090866,40.452209,26.199297,32.614357,37.507469,67.277756,49.434174,28.69895
nyu465506,587731185132830824,6.04525494,-1.02032698,2662,40,1,323,GALAXY,15.800155,3.489964E-3,14.904106,2.593057E-3,15.916291,7.302002E-3,15.003362,6.069098E-3,332.304138,460.129486,13.190273,39.774643,3.015452,4.71,28.27395026,161.7,47.050053,61.261547,64.842583,28.907066,36.850498,41.933971,78.759827,78.136528,78.765549
nyu465494,587731185132765311,5.9518465,-1.00113074,2662,40,1,322,GALAXY,17.249931,5.577467E-3,16.320995,3.913396E-3,17.294069,0.018683,16.415001,0.01187,506.708923,971.985352,4.971237,15.07669,3.032784,4.71,28.27395019,161.7,25.203999,28.315775,30.520666,13.155977,16.643803,18.776127,42.405407,48.824013,54.397537
nyu465489,587731185132765274,5.87533781,-0.84841233,2662,40,1,322,GALAXY,17.554863,6.062831E-3,16.658215,4.336315E-3,17.630432,0.011241,16.72823,8.354483E-3,1895.24426,276.470184,3.483227,9.956594,2.85844,4.71,28.27395019,161.7,16.637926,20.139908,17.632814,9.850212,11.737678,13.958179,71.958778,76.487144,78.086555
nyu465475,587731185132699766,5.8051073,-0.96382151,2662,40,1,321,GALAXY,16.608089,4.784844E-3,15.708478,3.418205E-3,16.664375,0.014543,15.843381,7.184776E-3,845.930603,999.136169,8.91717,25.893568,2.903788,4.71,28.27395019,161.7,34.352188,36.272053,39.892593,21.034555,27.588087,30.965008,115.549988,115.004143,112.354797
nyu465474,587731185132699764,5.80349183,-1.00526506,2662,40,1,321,GALAXY,17.375469,5.696069E-3,16.467043,4.199171E-3,17.459003,0.021309,16.547859,0.01972,469.208679,984.500183,3.578014,10.567511,2.953457,4.71,28.27395019,161.7,17.695889,21.039738,21.588127,9.88659,11.914422,15.256082,58.639126,57.276592,59.332996
nyu465473,587731185132699759,5.8027874,-0.9867565,2662,40,1,321,GALAXY,17.250048,5.488086E-3,16.358681,3.92809E-3,17.331266,8.862926E-3,16.450384,6.775808E-3,637.434814,978.074524,4.637811,14.231306,3.06854,4.71,28.27395019,161.7,18.923689,23.69486,27.099344,16.191751,20.52829,23.678631,6.311172,2.271341,174.103226
nyu465471,587731185132699746,5.73147578,-1.04586101,2662,40,1,321,GALAXY,17.860086,7.351468E-3,17.003731,5.047203E-3,17.944792,0.012248,17.087711,9.374863E-3,100.364594,330.022705,3.279734,9.449595,2.881208,4.71,28.27395019,161.7,16.29874,19.969702,19.879873,10.715097,14.207187,15.329085,65.48391,60.394821,48.388084
nyu465462,587731185132634265,5.65411954,-0.9199524,2662,40,1,320,GALAXY,17.253656,5.239678E-3,16.401632,3.874857E-3,17.329922,9.495989E-3,16.492037,7.438415E-3,1244.78491,987.81189,3.831165,11.692518,3.051949,4.71,28.27395009,161.7,18.893467,26.242149,35.343517,15.43374,17.985886,18.109779,56.997417,62.661041,59.557877
nyu465460,587731185132634264,5.63776762,-0.92657742,2662,40,1,320,GALAXY,16.037575,3.53166E-3,15.137537,2.670851E-3,16.14267,7.297409E-3,15.26697,5.509512E-3,1184.53296,839.187256,8.263608,27.546429,3.333462,4.71,28.27395009,161.7,33.457153,44.43129,52.226929,31.377542,36.976334,43.323833,67.469696,70.228195,74.926224
nyu465456,587731185132634257,5.62331532,-0.92572953,2662,40,1,320,GALAXY,16.53027,4.302259E-3,15.649493,3.17607E-3,16.66461,8.11757E-3,15.793321,5.76237E-3,1192.23352,707.826111,6.954037,20.088322,2.888728,4.71,28.27395009,161.7,27.802807,32.629288,35.898067,19.576874,22.000463,24.219688,155.214035,155.336884,147.26004
nyu465368,587731185132372105,5.09342469,-1.0024021,2662,40,1,316,GALAXY,18.019238,8.30227E-3,17.165154,7.014748E-3,18.082563,0.01457,17.260305,0.011641,495.133881,1334.94031,3.426706,9.268129,2.704676,4.71,28.27394997,161.7,14.253638,18.337072,21.769068,9.583564,10.839169,12.952271,80.719284,75.133324,75.775284
nyu465344,587731185132241025,4.7380311,-0.9712023,2662,40,1,314,GALAXY,16.801483,4.990125E-3,15.780515,3.371756E-3,16.777115,0.013371,15.831245,8.811006E-3,778.655823,825.989075,8.231119,26.564531,3.227329,4.71,28.27394997,161.7,33.488033,42.741791,47.250984,20.325445,24.862888,27.247021,49.896484,49.797527,51.565758
nyu465173,587731185130995784,1.91601427,-0.85739513,2662,40,1,295,GALAXY,18.217457,8.988013E-3,17.344521,6.086057E-3,18.32852,0.015128,17.475733,9.952138E-3,1812.89441,1031.02356,3.458998,9.55405,2.762086,4.71,28.27394884,107.8,12.667957,16.417202,16.12072,9.707158,10.959873,15.107035,111.331833,120.864891,86.883209
nyu465157,587731185130864838,1.6576575,-0.85361574,2662,40,1,293,GALAXY,17.936903,7.861349E-3,16.983303,5.247318E-3,18.001043,0.028387,17.106117,0.021359,1847.09216,1404.35938,4.214094,12.349332,2.930483,4.71,28.27394874,107.8,19.364466,20.937904,21.910507,8.616173,11.617424,13.080871,21.984324,30.196018,29.860149
nyu465065,587731185130340390,0.34893213,-0.85193048,2662,40,1,285,GALAXY,17.339783,5.941757E-3,16.369362,4.054969E-3,17.382692,0.055726,16.457674,0.046747,1862.53528,394.838562,5.322308,16.922915,3.17962,4.71,28.27394824,161.7,27.875282,35.060181,38.077396,13.578784,18.049675,20.294109,33.294838,41.219002,36.089191
nyu465015,587731185129947296,359.5410529,-1.03188264,2662,40,1,279,GALAXY,17.874357,7.001433E-3,16.979576,4.915444E-3,17.885702,0.015155,17.022556,0.011151,226.218048,1216.40051,3.442714,10.894845,3.164609,4.71,28.27394805,161.7,19.018082,21.633308,23.575066,12.71519,15.09876,17.29612,5.233636,21.901802,6.718996
nyu465012,587731185129947285,359.52615686,-0.98727548,2662,40,1,279,GALAXY,17.614885,7.159293E-3,16.704929,4.979081E-3,17.494596,0.025543,16.649969,0.020324,631.586121,1080.9292,6.757478,18.126976,2.682506,4.71,28.27394805,161.7,26.513872,27.769018,28.117058,10.535196,14.002298,15.164441,87.058006,87.752953,86.424767
nyu46501,588015510366060720,52.44277472,0.98184266,3325,41,6,458,GALAXY,16.588896,4.239802E-3,15.585095,3.05456E-3,16.614569,7.139867E-3,15.628954,4.614147E-3,1404.73596,784.206116,7.983778,26.391682,3.305664,4.895,28.0883545,53.9,28.079634,37.370918,40.849911,24.750702,31.761978,36.863506,79.28569,61.546757,43.507217
nyu464990,587731185129816189,359.22491381,-0.86636323,2662,40,1,277,GALAXY,17.693232,6.626902E-3,16.800034,4.596758E-3,17.797077,0.015852,16.887333,0.011578,1730.89844,1064.65942,3.245925,9.169463,2.824916,4.71,28.27394795,161.7,16.410807,17.757387,20.685312,9.133741,11.965096,12.797118,49.141846,43.577435,52.926357
nyu464942,587731185129488415,358.45520301,-0.97445675,2662,40,1,272,GALAXY,14.883636,2.468722E-3,14.041509,2.112742E-3,14.89245,0.025738,14.054447,0.023977,748.121826,872.361633,15.545909,44.385647,2.855134,4.71,28.27394774,161.7,93.107742,112.037582,125.047188,23.611948,27.905258,31.256197,28.881035,29.594704,29.519102
nyu464858,587731185128964121,357.21517927,-0.89402995,2662,40,1,264,GALAXY,16.658451,4.458676E-3,15.754892,3.31611E-3,16.699244,0.011974,15.805638,0.010088,1479.34717,487.633423,6.91581,23.218918,3.357368,4.71,28.2739475,161.7,31.248087,38.154121,43.436909,19.600235,25.407553,28.8647,37.960789,31.825068,34.037113
nyu464826,587731185128636506,356.44516973,-0.84095656,2662,40,1,259,GALAXY,17.774958,6.930767E-3,16.870911,4.845536E-3,17.731285,0.036463,16.862524,0.033276,1961.69812,292.947815,4.150073,14.312909,3.448833,4.71,28.27394736,161.7,19.809986,28.234478,33.34816,15.442212,19.244646,21.849176,147.467499,127.881104,135.544571
nyu464769,587731185127915578,354.86075207,-0.95958767,2662,40,1,248,GALAXY,18.275869,8.126453E-3,17.371407,5.627348E-3,18.327538,0.016032,17.391981,0.015444,882.641113,860.039368,2.652131,8.040204,3.031602,4.71,28.27394701,161.7,12.088366,17.576431,16.35907,8.023264,10.253551,9.881462,139.550644,159.581299,137.325974
nyu46464,588015510365929694,52.20313735,0.91886473,3325,41,6,456,GALAXY,16.511196,4.08441E-3,15.529677,3.041578E-3,16.606621,0.031437,15.669472,0.026762,832.52356,1327.94031,6.765847,20.327898,3.004487,4.895,28.08835452,53.9,33.055336,39.366398,43.845741,17.842489,22.982479,27.165442,121.831383,120.905273,117.370857
nyu46459,588015510365929606,52.13828881,1.00670675,3325,41,6,456,GALAXY,15.808705,3.379404E-3,14.843689,2.502582E-3,15.935335,6.339084E-3,14.907415,4.598977E-3,1631.09155,738.266968,14.109397,45.269909,3.208494,4.895,28.08835452,53.9,37.936455,61.545425,72.375648,33.837315,45.604389,48.875507,173.223297,175.308716,172.51947
nyu464549,587731185126080685,350.71797828,-1.00025967,2662,40,1,220,GALAXY,15.386749,2.752948E-3,14.493357,2.238289E-3,15.411615,4.661584E-3,14.524804,3.317715E-3,512.222534,1306.90637,11.873493,38.244343,3.220985,4.71,28.27394503,161.7,46.788548,55.467892,60.46785,39.00779,47.639568,52.943089,134.611252,134.870468,132.662842
nyu464538,587731185125949542,350.40555528,-0.90061436,2662,40,1,218,GALAXY,16.134336,3.546389E-3,15.345531,2.886127E-3,16.221107,5.533008E-3,15.411741,4.19519E-3,1418.39856,1188.14819,7.435101,22.529242,3.030119,4.71,28.27394489,161.7,31.979492,36.685719,39.136627,21.690413,25.809788,27.132715,44.555336,45.417736,41.193405
nyu464532,587731185125883975,350.21425155,-1.01133499,2662,40,1,217,GALAXY,16.275482,3.654057E-3,15.464605,2.982135E-3,16.421301,0.034243,15.605748,0.034204,411.764008,810.402649,5.597371,16.226849,2.899013,4.71,28.27394479,161.7,33.015331,39.287727,42.559925,12.918127,15.107254,17.253218,59.482868,56.477489,54.847557
nyu464524,587731185125818492,350.1211341,-1.00241799,2662,40,1,216,GALAXY,14.651393,2.201998E-3,13.771121,1.899732E-3,14.729034,2.700368E-3,13.846767,2.080483E-3,492.833313,1324.94629,13.224427,42.7789,3.234839,4.71,28.2739447,161.7,57.013515,73.132851,81.610207,51.226154,63.852333,71.607399,155.543442,155.905045,153.957794
nyu464355,587731185123393733,344.49913641,-0.92212009,2662,40,1,179,GALAXY,16.565447,3.964792E-3,15.640686,3.040979E-3,16.586239,6.261622E-3,15.666892,4.4374E-3,1222.65454,572.973206,5.350735,15.735586,2.940827,4.71,28.27394247,107.8,20.933178,24.132507,27.25692,20.096493,23.142515,25.969919,135.144836,21.249838,51.154198
nyu464283,587731185122803901,343.20831958,-0.95491225,2662,40,1,170,GALAXY,17.228085,5.731239E-3,16.310091,3.990814E-3,17.280838,0.012911,16.395357,9.20387E-3,924.4776,1087.66333,5.496944,17.626234,3.206551,4.71,28.27394185,107.8,23.697344,28.082336,33.417133,18.945688,25.667557,28.623234,47.485355,33.548191,46.481194
nyu464254,587731185122410623,342.22508259,-0.9593244,2662,40,1,164,GALAXY,18.58481,0.010478,17.546949,6.237695E-3,18.6362,0.020081,17.605541,0.012285,884.687073,315.545593,2.857223,7.87068,2.754661,4.71,28.2739414,107.8,11.091582,13.268955,14.756328,6.356416,8.551989,9.183184,72.831825,79.889877,82.24633
nyu464230,587731185121886429,341.09887626,-0.88444347,2662,40,1,156,GALAXY,16.212976,3.486181E-3,15.313791,2.740074E-3,16.309198,7.462692E-3,15.418913,6.52778E-3,1565.63721,965.034607,5.627694,16.832169,2.990953,4.71,28.27394095,107.8,27.551987,34.208336,38.258995,18.29579,22.288868,25.172451,15.974063,11.439346,17.279428
nyu464171,587731185121427697,340.02972681,-0.89244054,2662,40,1,149,GALAXY,16.326082,4.023144E-3,15.444787,2.976271E-3,16.416618,9.586266E-3,15.537921,9.581957E-3,1493.25989,772.24469,8.527675,26.954073,3.160777,4.71,28.27394045,107.8,29.806927,47.486725,49.408821,24.600698,31.01251,37.376183,53.380207,34.87159,29.548635
nyu464168,587731185121427643,339.96947558,-0.85490181,2662,40,1,149,GALAXY,16.620829,4.763851E-3,15.628851,3.283963E-3,16.799854,0.024807,15.82734,0.026475,1834.52124,224.603958,7.66558,22.261799,2.904124,4.71,28.27394045,107.8,40.316353,56.298416,64.710381,12.593988,15.022362,16.337421,4.383907,6.407199,9.55263
nyu464165,587731185121427484,339.9790364,-0.98860231,2662,40,1,149,GALAXY,15.88779,3.82145E-3,14.954594,2.711268E-3,15.907022,8.533694E-3,14.979325,5.068378E-3,618.896423,311.556854,17.260954,48.602467,2.815746,4.71,28.27394045,107.8,48.077049,61.929756,68.373672,36.323303,45.372196,50.257862,109.757401,112.351402,115.827057
nyu464146,587731185121362115,339.82666404,-1.00732953,2662,40,1,148,GALAXY,16.869211,5.868287E-3,15.891856,4.015462E-3,17.083336,0.018787,16.120781,0.014194,448.64325,287.45752,7.343067,21.324564,2.904041,4.71,28.2739404,107.8,34.223667,39.591637,39.615253,11.008938,13.46365,15.191824,71.114799,74.890678,75.102409
nyu464144,587731185121362102,339.81716061,-0.99309332,2662,40,1,148,GALAXY,16.177368,3.811775E-3,15.26866,2.817492E-3,16.257582,8.919368E-3,15.361171,7.470097E-3,578.033203,201.050644,9.341186,30.478184,3.262775,4.71,28.2739404,107.8,35.876671,47.705784,52.083752,27.221172,34.706394,40.565838,174.35437,174.484802,176.282211
nyu464142,587731185121361985,339.85013306,-1.03778785,2662,40,1,148,GALAXY,15.706331,3.074037E-3,14.76905,2.384107E-3,15.735483,8.394796E-3,14.802977,7.97948E-3,171.89595,500.848907,10.252851,36.705238,3.580003,4.71,28.2739404,107.8,42.846424,53.286385,55.80283,36.232128,44.754086,51.117668,164.993988,169.88768,162.739288
nyu464101,587731185121165522,339.35743474,-0.91043198,2662,40,1,145,GALAXY,16.853207,4.558792E-3,15.934855,3.335429E-3,16.874483,0.014768,15.975094,0.013216,1329.36841,104.805344,5.278534,18.008238,3.411598,4.71,28.27394016,107.8,31.947733,36.204037,39.173882,13.896552,16.747881,18.136663,28.694517,26.658783,27.921885
nyu464100,587731185121165491,339.48460675,-0.97690527,2662,40,1,145,GALAXY,16.214952,3.920082E-3,15.253199,2.846639E-3,15.990441,0.016511,15.138363,0.013749,725.188721,1260.86328,14.368108,48.319595,3.362976,4.71,28.27394016,107.8,71.329079,85.99855,85.223358,26.444681,32.277451,35.889828,23.866537,26.35998,26.557629
nyu464032,587731185120641251,338.22105604,-0.9735123,2662,40,1,137,GALAXY,16.288986,3.681911E-3,15.325362,2.740894E-3,16.361814,6.968062E-3,15.403882,5.19659E-3,755.848877,661.990845,6.496009,21.406769,3.295372,4.71,28.27393964,107.8,30.88505,39.757656,46.368114,23.725998,30.12604,35.319958,151.10231,138.872482,142.189713
nyu464020,587731185120575782,338.15131756,-0.95993232,2662,40,1,136,GALAXY,16.881121,4.934972E-3,15.939326,3.443269E-3,16.986509,8.652107E-3,16.051632,5.335476E-3,879.389709,1389.01111,6.111601,18.556763,3.036317,4.71,28.27393958,107.8,23.24885,31.624397,37.338676,18.559416,21.775322,24.686508,75.340553,71.574104,73.035957
nyu463997,587731185120510274,337.96383546,-0.95066129,2662,40,1,135,GALAXY,16.815563,5.003875E-3,15.94066,3.471561E-3,16.838398,7.768395E-3,15.994204,4.80696E-3,963.74884,1045.73718,6.097999,16.88253,2.768536,4.71,28.27393946,107.8,24.570942,29.061438,-9999,16.575933,18.550097,-9999,13.88672,11.768808,-9999
nyu463899,587731185119920360,336.63659616,-0.86655799,2662,40,1,126,GALAXY,18.122353,8.517477E-3,17.233194,5.646035E-3,18.152578,0.015888,17.269026,0.010256,1728.50159,1228.51929,3.9558,11.747774,2.969759,4.71,28.27393898,107.8,14.586262,17.196247,18.350182,11.047388,13.280652,15.626874,112.533272,110.009323,130.843384
nyu463853,587731185119527263,335.74907602,-0.87145236,2662,40,1,120,GALAXY,17.096134,4.876799E-3,16.129999,3.533385E-3,17.10236,0.024616,16.173611,0.021409,1684.14893,1326.83521,4.102829,13.806746,3.365177,4.71,28.27393843,107.8,28.340975,37.994087,41.543228,16.533445,19.087133,20.01932,113.343048,114.300407,116.4636
nyu463680,587731185118412992,333.08508889,-0.94267716,2662,40,1,103,GALAXY,16.77799,4.588129E-3,15.792255,3.27637E-3,16.836655,8.612957E-3,15.854132,0.010283,1036.05713,244.801346,6.244736,19.932003,3.191809,4.71,28.27393758,107.8,28.280376,33.082726,38.611019,15.9511,21.743538,24.665232,12.207143,11.653476,8.521813
nyu463670,587731185118347532,332.99638198,-0.86634586,2662,40,1,102,GALAXY,18.151451,8.846529E-3,17.206367,5.608545E-3,18.082321,0.025021,17.161564,0.017799,1730.19153,799.337341,4.973508,13.301348,2.67444,4.71,28.27393748,107.8,20.815838,25.280041,27.744537,7.116092,8.253295,8.570504,152.177673,152.175156,156.249313
nyu463557,587731185117495575,331.11592167,-0.94807352,2662,40,1,89,GALAXY,16.893263,5.407653E-3,15.97086,3.767978E-3,17.081129,0.016996,16.211275,0.014616,986.791443,1396.7688,6.308321,17.890089,2.835951,4.71,28.27393665,107.8,28.157915,35.170692,35.667114,15.819782,17.398031,21.240154,92.801147,90.552162,103.210999
nyu463508,587731185117233530,330.50270951,-0.97439933,2662,40,1,85,GALAXY,17.525927,5.960244E-3,16.569107,4.205726E-3,17.542442,0.014325,16.607101,0.013009,747.536011,1265.87732,3.852797,12.978694,3.368643,4.71,28.27393638,107.8,21.106871,28.651707,31.665949,15.288203,20.244394,24.453253,18.753828,16.68413,26.16991
nyu463441,587731185116905761,329.68068781,-0.97154662,2662,40,1,80,GALAXY,17.295921,5.56975E-3,16.274845,3.798604E-3,17.38776,9.459554E-3,16.358797,9.03525E-3,773.634216,597.655701,4.496167,13.441559,2.989559,4.71,28.27393605,107.8,19.774872,25.209557,27.823515,11.343171,13.041561,15.489031,151.744705,151.393906,149.396667
nyu463351,587731185116250478,328.2165559,-0.97305755,2662,40,1,70,GALAXY,17.19454,6.001846E-3,16.180027,3.911454E-3,17.260015,0.01272,16.256296,7.987797E-3,759.981812,897.398071,6.780691,20.317932,2.99644,4.71,28.27393525,107.8,21.159252,28.420671,33.005856,18.767378,22.74345,25.93358,8.925673,8.882357,7.563272
nyu463283,587731185115857080,327.24240793,-0.92828553,2662,40,1,64,GALAXY,17.29501,5.624079E-3,16.344206,3.904189E-3,17.366747,9.755418E-3,16.440617,6.947039E-3,1166.81494,207.075333,4.686528,13.221044,2.821074,4.71,28.27393489,107.8,19.397339,22.209484,24.468363,13.27998,15.924913,18.365919,141.735535,149.56929,159.005051
nyu463191,587731185115005348,325.42643304,-0.96037824,2662,40,1,51,GALAXY,17.517275,7.064216E-3,16.453327,4.410983E-3,17.661446,0.014699,16.652861,0.010922,874.979797,1391.13416,5.234956,13.89807,2.654859,4.71,28.27393412,107.8,19.428579,24.163361,23.833649,11.137471,13.15616,15.017992,162.361496,163.906586,171.622879
nyu463190,587731185115005347,325.42990846,-0.95906677,2662,40,1,51,GALAXY,16.641083,4.606447E-3,15.717802,3.356213E-3,16.817244,0.018886,15.884727,0.037812,886.90509,1422.74377,6.797794,20.131529,2.96148,4.71,28.27393412,107.8,32.371048,39.32198,39.114521,14.08218,19.166407,22.900866,115.437897,111.213516,114.548264
nyu463081,587731185113956643,322.90155193,-0.98867223,2662,40,1,35,GALAXY,17.057083,4.993104E-3,16.198126,4.026175E-3,17.17061,0.020017,16.316174,0.016726,618.056702,212.82869,3.922403,11.374113,2.899782,4.71,28.27393284,161.7,22.650528,24.148251,26.008966,10.58355,12.854717,13.691663,134.031616,134.647415,135.241333
nyu463059,587731185113760210,322.52308115,-0.95583722,2662,40,1,32,GALAXY,15.955242,4.049058E-3,15.023505,2.974949E-3,16.053532,0.024286,15.199898,0.012623,916.633118,855.419128,13.361125,41.000076,3.06861,4.71,28.27393261,161.7,60.358261,64.91272,72.758179,21.780678,27.608438,29.39575,95.610931,96.395981,95.864365
nyu463013,587731185113432310,321.8040351,-0.85931402,2662,40,1,27,GALAXY,16.918175,5.210035E-3,16.009871,3.702994E-3,17.069078,9.520584E-3,16.161289,7.510514E-3,1794.78979,1122.97314,6.343912,17.789175,2.804133,4.71,28.27393214,161.7,21.985762,25.862246,30.702658,16.691925,21.198601,23.040615,28.032534,37.269676,48.28281
nyu462668,587731174919438555,320.14737243,1.08677365,2659,40,6,127,GALAXY,16.632048,4.420388E-3,15.770045,3.496635E-3,16.835083,0.012887,15.960767,9.955022E-3,416.295288,630.225281,8.04673,22.006502,2.734838,4.895,28.25573957,161.7,25.273108,31.44236,33.355961,20.785959,24.740488,23.731249,41.861507,48.776196,41.173878
nyu462667,587731174919438553,320.15520683,1.09241882,2659,40,6,127,GALAXY,14.99483,2.372641E-3,14.060131,2.032459E-3,15.11529,0.018586,14.203006,0.016575,467.625793,701.460999,14.244662,44.704887,3.138361,4.895,28.25573957,161.7,69.431526,88.485207,100.749008,39.137962,46.804455,55.465755,51.000435,52.716362,54.636086
nyu462583,587731174918849075,318.77674962,1.17010276,2659,40,6,118,GALAXY,18.234383,8.373179E-3,17.304829,6.236475E-3,18.302931,0.014907,17.367834,0.011886,1173.85461,417.905914,3.880037,11.809247,3.043591,4.895,28.25573927,107.8,13.378649,18.942661,20.903706,9.81965,14.244338,14.318147,56.017387,50.084019,67.558601
nyu462510,587731174917931352,316.65901388,1.25448491,2659,40,6,104,GALAXY,17.206173,4.853461E-3,16.205357,3.617666E-3,17.266096,0.016858,16.263996,0.017129,1941.12744,218.547424,4.694713,15.458918,3.292836,4.895,28.25573884,107.8,20.359774,27.103634,32.60321,15.843932,25.25622,29.515932,131.203918,136.867035,109.459229
nyu462477,587731174917407509,315.56477951,1.13365952,2659,40,6,96,GALAXY,17.382648,6.516928E-3,16.423038,5.316035E-3,17.331194,0.015678,16.412947,9.570096E-3,843.018616,1158.29541,8.952151,24.577555,2.745435,4.895,28.25573856,161.7,45.546642,49.696213,50.018288,8.370684,10.125746,11.151681,44.837963,43.95319,42.737076
nyu462474,587731174917407313,315.49177401,1.12894718,2659,40,6,96,GALAXY,16.520668,3.984727E-3,15.44663,3.020106E-3,16.679039,0.063356,15.613778,0.062275,800.16272,494.665161,7.022674,21.779648,3.101333,4.895,28.25573856,161.7,40.026939,45.172153,46.802498,11.27697,14.766373,16.763325,67.82029,66.248306,64.93029
nyu462431,587731174917079545,314.73298308,1.11629709,2659,40,6,91,GALAXY,17.110487,5.270862E-3,16.250364,4.154087E-3,17.274212,0.014473,16.417316,0.01391,685.236267,401.019043,6.801742,19.456205,2.860474,4.895,28.25573839,107.8,24.067356,28.192099,31.629374,13.043349,17.918488,20.539816,82.943268,86.826218,91.587051
nyu462320,587731174916358388,313.11572493,1.23521843,2659,40,6,80,GALAXY,18.071115,7.745121E-3,17.141071,5.7065E-3,18.221407,0.014401,17.28195,9.959136E-3,1766.47156,668.653564,4.334294,11.517933,2.657395,4.895,28.25573789,161.7,17.021727,20.419193,18.436005,7.896003,9.870818,12.231214,116.875931,113.252533,111.281898
nyu46219,588015510364881085,49.79270236,0.98124498,3325,41,6,440,GALAXY,16.182068,3.604749E-3,15.232136,2.717242E-3,16.191521,5.826036E-3,15.250402,3.809315E-3,1400.0144,1192.31689,9.815011,29.949991,3.051448,4.895,28.0883557,53.9,33.311832,41.095478,45.011841,30.066368,36.382622,39.684559,20.339386,26.5837,21.437916
nyu462181,587731174915179020,310.44721972,1.2130729,2659,40,6,62,GALAXY,16.7598,4.391924E-3,15.747817,3.301325E-3,16.848591,7.401742E-3,15.835074,5.515472E-3,1565.7384,905.990601,7.618679,24.921621,3.271121,4.895,28.25573712,161.7,26.698725,36.310829,37.758598,21.473455,26.679064,30.557808,20.09013,19.605364,14.573118
nyu46181,588015510364749959,49.48363663,1.04535394,3325,41,6,438,GALAXY,15.403141,2.997472E-3,14.450466,2.335983E-3,15.669885,5.277566E-3,14.700048,8.529594E-3,1982.45068,1104.73132,12.418825,34.698906,2.794057,4.895,28.08835596,53.9,47.931572,46.792561,41.375248,26.867867,33.202545,37.408352,133.491119,124.918556,125.712334
nyu461797,587731174382567703,320.19044489,0.79100143,2659,40,5,127,GALAXY,16.65662,3.765727E-3,15.773331,3.097892E-3,16.749628,0.026107,15.873582,0.025126,1544.31519,1021.11511,3.965163,12.543707,3.163478,4.725,28.30342366,161.7,26.763979,31.876917,37.811829,15.724946,21.70171,24.304964,13.523538,13.492325,20.301012
nyu461782,587731174382436644,319.90183278,0.70423667,2659,40,5,125,GALAXY,15.220216,2.471108E-3,14.275498,2.096445E-3,15.270151,0.019369,14.346106,0.015668,755.478149,1119.36572,11.2402,37.078583,3.298748,4.725,28.30342359,161.7,64.728081,79.722427,87.695381,36.655636,47.532158,49.044243,163.425018,165.499329,164.074066
nyu461702,587731174381912751,318.73736762,0.69448433,2659,40,5,117,GALAXY,18.053755,7.835317E-3,17.096321,5.210546E-3,18.15712,0.028893,17.211353,0.02954,666.617493,1420.32898,3.179273,9.200686,2.893959,4.725,28.30342334,161.7,17.992678,19.641716,21.130545,6.440339,7.99338,9.433342,151.797943,156.313599,151.865768
nyu461647,587731174381453472,317.60172234,0.75729428,2659,40,5,110,GALAXY,17.849894,6.480382E-3,16.872025,4.674423E-3,17.921583,0.010598,16.951283,8.004367E-3,1237.9679,622.465393,3.751495,10.651935,2.839384,4.725,28.3034231,161.7,14.648434,18.371904,20.404089,10.305009,12.873069,14.82767,26.0215,26.095242,21.587423
nyu461635,587731174381126215,316.8282703,0.74508193,2659,40,5,105,GALAXY,17.310926,5.219481E-3,16.340746,3.852158E-3,17.285503,0.012774,16.347099,0.010369,1127.17432,395.488312,5.101641,17.626968,3.455157,4.725,28.30342294,107.8,23.982639,29.661442,35.781536,16.615395,21.780111,24.654634,34.45509,30.68532,32.635151
nyu461632,587731174381125890,316.86585803,0.81638614,2659,40,5,105,GALAXY,16.533314,3.671682E-3,15.658304,2.978545E-3,16.624157,0.01147,15.754219,0.010651,1775.17114,737.023315,4.795758,14.834425,3.093239,4.725,28.30342294,107.8,28.135473,33.144085,34.503582,14.036289,15.955918,17.673899,39.505569,38.472466,37.511078
nyu461615,587731174380864072,316.21398951,0.63224477,2659,40,5,101,GALAXY,16.939678,4.440554E-3,16.024084,3.461731E-3,17.010319,0.019039,16.120476,0.023136,101.553703,255.281113,5.029716,15.261627,3.034292,4.725,28.30342282,161.7,23.599251,26.383604,27.868176,14.262382,15.233795,16.096466,35.935661,26.811054,34.682064
nyu461608,587731174380798582,316.09679019,0.80918442,2659,40,5,100,GALAXY,17.64826,6.024793E-3,16.744976,4.601699E-3,17.653706,9.234915E-3,16.733351,6.588553E-3,1709.76733,550.307678,4.194708,12.458057,2.969946,4.725,28.30342279,161.7,14.889647,17.314402,19.998875,13.439579,16.466703,16.512644,152.582947,150.908173,123.642723
nyu461559,587731174380142885,314.63282618,0.65393357,2659,40,5,90,GALAXY,16.955042,4.368503E-3,16.023207,3.414447E-3,17.024288,9.237159E-3,16.097233,8.582573E-3,298.827301,851.032776,4.492317,14.915435,3.32021,4.725,28.30342241,161.7,24.356441,31.235601,32.329342,18.420946,23.95039,28.215965,18.70849,22.898468,17.274782
nyu461551,587731174380012452,314.35687174,0.63357176,2659,40,5,88,GALAXY,17.398008,5.380593E-3,16.506172,4.134473E-3,17.45788,0.012771,16.573092,0.013148,113.819252,1064.05164,4.477882,14.151005,3.1602,4.725,28.30342232,161.7,20.037416,25.00041,25.035681,12.998615,16.534433,17.434456,113.75248,111.035744,108.774811
nyu461544,587731174380012120,314.38908752,0.66039796,2659,40,5,88,GALAXY,17.527237,6.030146E-3,16.642111,4.581031E-3,17.513203,0.013515,16.649378,0.011486,357.59964,1356.88977,5.713657,19.082296,3.339769,4.725,28.30342232,161.7,20.25803,28.897167,31.137407,15.718278,19.570557,21.596334,155.515594,175.936005,156.646805
nyu461449,587731174379553679,313.27956782,0.65721658,2659,40,5,81,GALAXY,17.307693,5.689022E-3,16.407593,4.26302E-3,17.435579,9.468155E-3,16.533501,6.748709E-3,329.068146,796.630249,5.400432,14.773515,2.735617,4.725,28.30342197,161.7,22.738113,26.363035,30.685425,11.115174,13.427259,14.728848,150.734756,150.463806,146.759445
nyu461384,587731174379160463,312.39518128,0.73118212,2659,40,5,75,GALAXY,17.928406,6.444577E-3,16.925192,4.748079E-3,17.959036,0.014967,16.960146,0.015384,1001.40771,921.993652,2.893739,8.853517,3.059543,4.725,28.30342171,161.7,14.481592,19.726082,21.745874,8.699684,12.131794,13.864841,127.264717,120.020767,105.366051
nyu460836,587731173845434965,319.59456229,0.29160659,2659,40,4,123,GALAXY,17.089342,4.352835E-3,16.214039,3.666048E-3,17.170708,9.746817E-3,16.299456,9.536197E-3,818.810303,1046.4469,3.671647,10.515129,2.863873,4.76,28.25609595,161.7,16.753977,20.500429,23.339441,14.598105,19.90951,20.838692,168.657684,150.368896,34.973743
nyu460775,587731173844976269,318.5163012,0.34704802,2659,40,4,116,GALAXY,17.472591,6.218109E-3,16.475031,4.587146E-3,17.615286,0.012569,16.634096,0.010581,1322.81873,770.265015,5.000676,14.520864,2.90378,4.76,28.25609573,161.7,22.577784,26.494726,30.289764,10.320053,12.983797,14.900782,13.913126,10.337043,12.120947
nyu460741,587731173844713865,317.85210367,0.35428346,2659,40,4,112,GALAXY,18.122105,8.229317E-3,17.111668,5.873907E-3,18.0082,0.029589,17.043018,0.030719,1388.52087,175.608917,6.296959,17.664179,2.805192,4.76,28.2560956,107.8,24.756353,33.80304,38.30143,8.541867,10.879572,13.366709,161.497528,157.326889,153.423416
nyu460732,587731173844648679,317.83821202,0.35777823,2659,40,4,111,GALAXY,17.533789,5.673523E-3,16.511982,4.245775E-3,17.466499,0.012077,16.450905,9.898691E-3,1420.26709,1410.23169,5.421532,18.820456,3.471427,4.76,28.25609557,107.8,18.617872,28.094034,35.926743,18.021919,23.42507,27.436596,117.636612,96.313347,99.319
nyu460713,587731173844517343,317.44665528,0.36139546,2659,40,4,109,GALAXY,16.997206,5.078038E-3,16.053724,3.876097E-3,17.090151,8.719798E-3,16.123663,7.293552E-3,1453.22949,572.475342,7.565022,22.322279,2.950722,4.76,28.2560955,107.8,27.877258,34.504444,36.507568,16.670069,20.498255,21.6744,9.202435,4.199404,7.615197
nyu460712,587731173844517339,317.44652753,0.26606982,2659,40,4,109,GALAXY,16.858309,4.164891E-3,15.920868,3.368708E-3,16.90012,0.014635,15.971362,0.016283,586.489502,571.46936,5.419498,17.459433,3.221596,4.76,28.2560955,107.8,28.661209,34.295227,39.187061,14.147601,17.040525,18.009201,150.847198,149.207962,146.656998
nyu460706,587731173844451913,317.32351091,0.27197441,2659,40,4,108,GALAXY,16.991337,4.657742E-3,16.050892,3.680484E-3,17.036966,0.021373,16.129255,0.017108,640.190063,813.995422,5.541507,18.109425,3.26796,4.76,28.25609547,107.8,28.228109,33.882408,-9999,17.53097,21.938162,-9999,53.571293,56.199375,-9999
nyu460651,587731173843796550,315.76763214,0.26632662,2659,40,4,98,GALAXY,16.883932,4.553053E-3,15.954837,3.580986E-3,16.980362,0.070079,16.043098,0.066457,589.370361,278.758148,4.033917,12.757941,3.162668,4.76,28.25609504,107.8,29.537992,30.388424,-9999,8.821502,11.273267,-9999,87.640953,88.046043,-9999
nyu460640,587731173843730999,315.62658089,0.33168046,2659,40,4,97,GALAXY,17.571587,0.020451,16.597172,4.160414E-3,17.556103,0.012483,16.662081,0.012447,1183.62488,357.538666,3.258648,9.478,2.908568,4.76,28.25609498,107.8,15.321766,20.967354,20.475117,10.61025,12.884032,13.567675,72.873322,74.910461,67.853798
nyu460638,587731173843730533,315.60668024,0.27122413,2659,40,4,97,GALAXY,16.496025,3.990613E-3,15.551048,3.179153E-3,16.54109,8.327281E-3,15.598224,5.497964E-3,633.935181,176.732971,10.105248,26.621916,2.634464,4.76,28.25609498,107.8,32.355827,36.623833,38.375866,27.131422,31.147095,32.951252,68.781654,63.301823,57.623676
nyu460637,587731173843730515,315.60576156,0.29650913,2659,40,4,97,GALAXY,17.953897,6.631872E-3,17.077587,5.29381E-3,17.918417,0.019592,17.019253,0.020275,863.834412,168.345062,4.908424,13.050038,2.658702,4.76,28.25609498,107.8,23.458523,25.47213,27.755888,6.47354,8.502875,9.14635,109.24041,107.456673,108.774094
nyu460605,587731173843533983,315.18199614,0.34204951,2659,40,4,94,GALAXY,17.610132,5.723772E-3,16.663511,4.462142E-3,17.63946,0.018013,16.714722,0.019762,1277.96741,398.586212,4.253593,13.848227,3.255654,4.76,28.25609486,161.7,19.324095,24.848635,24.922226,12.490666,15.153836,15.988718,19.416191,20.765341,7.637641
nyu460599,587731173843469212,315.13067379,0.36247921,2659,40,4,93,GALAXY,17.295406,5.088651E-3,16.349833,4.002315E-3,17.296347,0.014336,16.384039,0.010825,1463.68677,1293.11731,5.105228,16.584526,3.248538,4.76,28.25609481,161.7,20.185564,23.793856,27.136797,18.245491,23.060442,24.631807,45.206375,172.985886,150.715912
nyu460592,587731173843468645,315.13704474,0.29444519,2659,40,4,93,GALAXY,16.24395,3.786998E-3,15.264454,3.013202E-3,16.492226,0.151721,15.561874,0.133556,845.09198,1351.16016,7.914513,25.042753,3.164156,4.76,28.25609481,161.7,58.582455,70.463295,76.241035,14.155596,16.395514,17.125151,106.875717,105.389793,106.025383
nyu460564,587731173843272451,314.63658084,0.29546192,2659,40,4,90,GALAXY,18.785456,0.012522,17.608446,7.922034E-3,18.697739,0.028243,17.634533,0.022472,854.326111,884.059082,5.314011,16.948313,3.189364,4.76,28.25609469,161.7,18.041153,22.374706,23.986229,8.009073,11.941131,12.087453,37.515865,34.936665,32.509525
nyu460545,587731173843141095,314.39297146,0.34090962,2659,40,4,88,GALAXY,17.22716,7.100454E-3,16.299202,5.325855E-3,17.177053,0.055225,16.309065,0.052031,1267.63501,1391.03418,10.90576,32.689468,2.99745,4.76,28.25609462,161.7,58.685684,52.620792,46.779545,11.61351,14.584941,14.621269,6.975023,7.499056,9.786882
nyu460517,587731173843010160,313.95778504,0.37392426,2659,40,4,86,GALAXY,17.852158,5.908455E-3,17.006414,4.866112E-3,17.921137,0.011339,17.08268,0.010233,1567.86426,156.364334,2.882747,7.908984,2.743558,4.76,28.25609455,161.7,14.40897,16.448509,16.808895,7.3991,8.552139,10.1037,70.925316,75.156837,66.217293
nyu460306,587731173842092499,311.94592228,0.25241171,2659,40,4,72,GALAXY,16.920118,4.170629E-3,15.970887,3.396258E-3,16.925089,0.142072,15.999281,0.033115,463.655212,919.788147,4.449081,15.201189,3.416703,4.76,28.25609399,161.7,24.165335,27.921625,33.478901,14.173081,17.538221,18.232586,27.471006,24.765221,15.066397
nyu460294,587731173842027210,311.85126356,0.30082533,2659,40,4,71,GALAXY,13.525526,1.83411E-3,12.626182,1.745004E-3,13.788939,1.906006E-3,12.917094,2.237487E-3,903.767578,1420.02405,18.050146,49.449371,2.739555,4.76,28.256094,161.7,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999
nyu460292,587731173842026987,311.82943474,0.32080024,2659,40,4,71,GALAXY,13.329751,1.676683E-3,12.362735,1.570409E-3,13.438388,5.911554E-3,12.450817,7.214361E-3,1085.38074,1221.52185,23.132229,67.796448,2.930822,4.76,28.256094,161.7,-9999,-9999,185.233459,-9999,-9999,113.865913,-9999,-9999,69.644173
nyu460275,587731173841896502,311.50200375,0.39205869,2659,40,4,69,GALAXY,16.43656,3.542663E-3,15.521147,2.976878E-3,16.496807,0.017326,15.592216,0.016206,1733.12891,966.469727,5.862657,19.731758,3.365668,4.76,28.25609392,161.7,32.862606,43.382244,51.254425,21.121878,26.667721,28.984913,59.805126,48.543591,45.085297
nyu460258,587731173841830016,311.26908541,0.28816263,2659,40,4,68,GALAXY,17.474169,6.06734E-3,16.516804,4.600666E-3,17.69706,0.011276,16.650652,0.010048,788.525818,210.023743,5.797002,15.893679,2.741707,4.76,28.2560939,161.7,18.656126,25.984619,27.138353,10.598924,14.833242,16.950949,171.097534,175.91037,176.580429
nyu459847,587731173308694561,319.79486335,-0.09240652,2659,40,3,125,GALAXY,16.690947,4.4817E-3,15.759706,3.522012E-3,16.857197,0.01319,15.952327,0.01042,1142.89417,146.164551,7.520156,20.551905,2.732909,4.72,28.2847593,161.7,34.880623,37.312519,40.695484,10.659622,13.886391,13.176286,67.863548,64.592598,68.807732
nyu459692,587731173307056590,316.18845791,-0.20780154,2659,40,3,100,GALAXY,16.73312,4.077337E-3,15.823576,3.287839E-3,16.804764,0.018511,15.923345,0.018015,94.225685,1383.50476,5.407174,17.552065,3.24607,4.72,28.28475838,161.7,32.681061,40.52317,41.890667,18.776386,24.181696,28.598291,12.332263,1.753184,0.553087
nyu459524,587731173305746218,313.13961484,-0.1498916,2659,40,3,80,GALAXY,17.433588,5.800087E-3,16.474403,4.586109E-3,17.36248,0.012216,16.406046,0.010906,621.063965,884.757202,5.164803,13.99874,2.710411,4.72,28.28475758,161.7,23.520597,26.880278,27.054575,9.145735,11.313442,13.404128,19.732082,18.774229,19.948572
nyu458940,587731172771299629,318.69043845,-0.56008755,2659,40,2,117,GALAXY,16.47282,4.273636E-3,15.53186,3.276299E-3,16.659954,0.025276,15.725063,7.412152E-3,704.880005,992.088013,8.865497,25.332714,2.85745,4.6,28.27240907,161.7,28.060116,35.199677,41.383949,23.212641,28.330956,30.893633,87.351448,93.488655,92.812042
nyu458922,587731172771103144,318.15571043,-0.48167144,2659,40,2,114,GALAXY,17.434261,0.022005,16.511459,4.424588E-3,17.549395,9.726537E-3,16.599346,7.148317E-3,1417.84924,213.432159,4.791564,13.527165,2.823121,4.6,28.27240893,161.7,20.411663,22.985023,-9999,11.157314,13.598301,-9999,177.855988,179.721344,-9999
nyu458804,587731172769596237,314.79306201,-0.55084851,2659,40,2,91,GALAXY,17.402033,7.012067E-3,16.545601,6.366312E-3,17.481615,0.015508,16.636414,0.015408,789.681824,945.238586,6.669261,21.461739,3.218008,4.6,28.27240808,161.7,23.354378,31.123997,35.296276,14.659724,18.873434,20.787655,128.86879,123.008423,130.509537
nyu458750,587731172769268500,314.038409,-0.49733067,2659,40,2,86,GALAXY,17.47978,5.630532E-3,16.56065,4.331294E-3,17.624743,8.599094E-3,16.721922,7.162191E-3,1276.13745,889.048218,3.919719,10.29378,2.626152,4.6,28.27240792,161.7,14.818277,19.565434,21.206255,11.990847,15.90729,15.611084,133.442383,123.411949,139.26265
nyu458726,587731172769071785,313.53550116,-0.54321029,2659,40,2,83,GALAXY,18.193844,7.514965E-3,17.257391,5.591976E-3,18.298914,0.011397,17.336876,9.171234E-3,859.212646,399.845245,3.198884,8.488806,2.653677,4.6,28.27240777,161.7,12.022847,14.920022,15.441624,7.251135,9.55457,10.322996,20.436682,17.295219,21.369139
nyu458638,587731172768547594,312.43664108,-0.6149519,2659,40,2,75,GALAXY,18.283409,8.697847E-3,17.37903,6.383735E-3,18.400917,0.014202,17.45002,0.01028,207.314087,1297.53601,3.62317,9.961615,2.749419,4.6,28.27240739,161.7,12.620135,15.159424,15.225962,8.353835,11.166275,11.729383,45.943707,43.906532,40.289658
nyu458637,587731172768547578,312.43502256,-0.62622422,2659,40,2,75,GALAXY,17.361219,5.153453E-3,16.374849,3.937504E-3,17.338314,9.381307E-3,16.338579,0.011097,104.913094,1282.82458,5.325975,14.979062,2.812454,4.6,28.27240739,161.7,25.605778,28.190378,34.143803,8.202147,10.574553,10.233051,165.452087,166.19162,161.998383
nyu458564,587731172767696051,310.45000589,-0.46832506,2659,40,2,62,GALAXY,15.827599,3.315754E-3,14.993145,2.791418E-3,16.046431,4.90653E-3,15.213859,3.99369E-3,1540.64819,929.039673,10.950377,28.924536,2.641419,4.6,28.27240675,161.7,34.794884,44.265152,44.520958,26.26589,33.49852,37.132092,67.695862,63.232685,63.21843
nyu457995,587731172234166671,318.01128889,-1.0390896,2659,40,1,113,GALAXY,18.066851,7.15888E-3,17.212049,5.27253E-3,18.121885,0.041829,17.269836,0.038423,166.837036,259.910461,2.895227,8.891567,3.071112,4.71,28.29104731,161.7,18.264576,20.968916,20.511553,6.762753,8.219089,10.272125,62.716644,61.054409,60.985527
nyu457906,587731172233446034,316.47028838,-0.90840848,2659,40,1,102,GALAXY,17.584951,6.157285E-3,16.637148,4.313849E-3,17.610874,0.021188,16.66946,0.017754,1354.95935,1221.0957,4.065379,13.16524,3.238379,4.71,28.29104694,161.7,17.542219,22.883915,24.585155,13.467155,17.55994,18.243189,150.14064,147.928802,144.441223
nyu457738,587731172232135233,313.49723356,-0.92038161,2659,40,1,82,GALAXY,16.456554,3.893319E-3,15.559559,3.002164E-3,16.602699,0.047603,15.697856,0.055885,1246.61877,1411.50354,5.404068,16.088243,2.977062,4.71,28.29104595,161.7,24.672203,34.46175,41.335117,20.713659,30.50527,35.675495,2.167692,152.521515,165.404587
nyu457718,587731172232004333,313.14438073,-0.98318336,2659,40,1,80,GALAXY,16.768297,5.018142E-3,15.771419,3.44464E-3,16.868298,0.010346,15.884721,7.153211E-3,675.664001,925.437805,8.260035,25.601027,3.099385,4.71,28.29104587,161.7,27.151037,34.752384,37.743237,19.644026,28.154514,31.617523,113.025963,107.274986,109.834892
nyu457714,587731172232003894,313.17383143,-0.9770048,2659,40,1,80,GALAXY,16.39967,4.430348E-3,15.37254,3.063093E-3,16.433348,9.637523E-3,15.48754,5.529602E-3,731.825317,1193.19446,10.726231,31.289488,2.9171,4.71,28.29104587,161.7,34.973343,43.022083,46.320621,25.673517,32.327595,35.659195,53.924904,59.986088,59.343143
nyu457703,587731172231938382,313.00221188,-0.89429667,2659,40,1,79,GALAXY,17.969471,7.557987E-3,17.026546,5.348319E-3,18.06217,0.166959,17.117548,0.497735,1483.91089,993.822388,3.717768,11.675741,3.140525,4.71,28.29104584,161.7,22.328884,27.582813,26.870293,6.729561,8.709246,10.382133,136.660095,139.466461,140.92337
nyu457650,587731172231742497,312.59356468,-1.00323152,2659,40,1,76,GALAXY,17.786259,6.907234E-3,16.878798,4.868588E-3,17.889153,0.018852,17.011093,0.017604,493.54422,1361.69873,3.894974,10.852049,2.786167,4.71,28.29104569,161.7,17.262798,21.056635,22.388266,8.296741,10.053768,11.296008,18.962564,10.766068,11.292321
nyu45756,588015510362915008,45.29601498,1.02557951,3325,41,6,410,GALAXY,17.734795,6.778673E-3,16.794519,4.716042E-3,17.742208,0.013174,16.815575,0.011633,1803.06665,1145.60059,4.606318,15.197315,3.299233,4.895,28.08835771,53.9,16.284599,21.517448,26.105019,15.003137,19.261461,20.777864,83.536079,104.650436,35.726112
nyu45754,588015510362914987,45.26422143,1.02355861,3325,41,6,410,GALAXY,18.657572,0.013079,17.612377,7.874474E-3,18.551659,0.046445,17.573168,0.022507,1784.67139,856.612976,6.073655,17.116766,2.818198,4.895,28.08835771,53.9,23.572346,31.214748,33.931072,6.584232,7.870431,8.929303,18.729944,20.754026,19.802794
nyu456778,587730848502710535,323.7395589,0.96536327,2583,40,6,139,GALAXY,17.436975,6.148323E-3,16.51292,4.487972E-3,17.533983,0.023742,16.632015,0.020269,1212.65833,272.1008,4.347211,12.881754,2.963223,4.895,28.16929502,107.8,24.02832,29.775372,29.150976,9.098529,11.199651,13.355744,63.767143,59.552078,54.85244
nyu456762,587730848502579553,323.44044119,0.91675965,2583,40,6,137,GALAXY,16.831013,4.289961E-3,15.988983,3.416333E-3,16.949863,0.022248,16.119459,0.031029,770.632935,274.808929,4.433652,13.373169,3.016287,4.895,28.16929496,107.8,32.671047,36.471523,39.752815,11.14295,13.313807,14.10895,39.65617,42.635876,38.798489
nyu456592,587730848501596412,321.28796457,0.89677543,2583,40,6,122,GALAXY,16.427042,3.656002E-3,15.553452,2.957523E-3,16.505793,0.013514,15.644239,0.021327,588.958618,1121.48901,5.014686,15.588755,3.10862,4.895,28.16929385,107.8,30.469971,34.970154,38.348377,15.480158,19.205622,21.121054,22.24774,27.575377,26.623564
nyu456578,587730848501530855,321.14434584,0.9790571,2583,40,6,121,GALAXY,16.14052,3.582774E-3,15.241821,2.850208E-3,16.280857,0.012829,15.402008,0.013088,1337.13611,1177.03296,7.522647,21.90316,2.911629,4.895,28.16929392,107.8,35.38348,41.177425,43.648529,17.717426,21.172565,24.598349,108.933151,108.717308,109.08242
nyu456542,587730848501399575,320.74453255,1.0267202,2583,40,6,119,GALAXY,15.31404,2.555742E-3,14.470204,2.21414E-3,15.371835,5.349E-3,14.536587,5.036667E-3,1770.26294,264.129822,8.418436,25.489206,3.027784,4.895,28.1692937,107.8,37.571552,45.215168,49.775692,33.069317,41.154289,46.584244,131.443192,125.783203,106.712303
nyu456360,587730848500023857,317.63269571,0.8950541,2583,40,6,98,GALAXY,16.302195,3.856907E-3,15.318832,2.874818E-3,16.388847,8.142498E-3,15.362752,8.508363E-3,573.123169,555.130615,8.764205,29.794956,3.399619,4.895,28.16929256,107.8,32.138214,47.872593,53.73954,24.408056,33.5797,36.130936,160.786743,161.710114,161.491592
nyu456358,587730848500023846,317.6329233,0.9085561,2583,40,6,98,GALAXY,18.285769,0.010288,17.45495,7.45983E-3,18.446835,0.045868,17.580334,0.018171,695.90387,557.202271,4.688839,13.253552,2.826617,4.895,28.16929256,107.8,14.389317,18.208776,20.354958,10.041311,12.059829,14.110298,42.300262,48.541782,59.866833
nyu456237,587730848498713325,314.67872633,0.95965431,2583,40,6,78,GALAXY,16.958221,5.011187E-3,16.073465,3.994848E-3,17.076149,0.027401,16.232517,0.023581,1161.17749,920.198059,5.154489,15.425175,2.992571,4.895,28.16929165,107.8,34.00959,39.267063,39.40168,11.617993,14.877196,17.344498,12.950008,13.05499,11.922909
nyu456231,587730848498712762,314.65936675,0.91257039,2583,40,6,78,GALAXY,15.064965,2.534726E-3,14.143529,2.091964E-3,15.148034,9.257705E-3,14.23991,5.489446E-3,733.06012,744.175232,14.780824,46.810802,3.166996,4.895,28.16929165,107.8,51.825455,63.923336,72.860847,48.122501,61.330624,67.75631,55.941624,52.550636,53.52792
nyu45620,588015510362259543,43.69467383,0.96166528,3325,41,6,400,GALAXY,17.556629,6.780937E-3,16.621164,4.941581E-3,17.599438,0.010046,16.673536,6.316225E-3,1222.12317,198.903931,4.650373,14.200838,3.053699,4.895,28.08835847,53.9,17.494381,21.021225,24.545181,14.010245,17.153214,18.408014,58.605045,57.818352,69.797813
nyu456199,587730848498516417,314.2410512,0.89818474,2583,40,6,75,GALAXY,17.261501,5.925787E-3,16.265244,4.172942E-3,17.445671,0.019473,16.495558,0.018044,601.985474,1024.40381,5.200565,15.098921,2.903323,4.895,28.16929148,107.8,24.654743,30.368593,33.793869,9.940581,11.745739,14.857707,102.393929,99.109528,91.938805
nyu456040,587730848497730045,312.48213481,0.89958821,2583,40,6,63,GALAXY,16.435217,4.561361E-3,15.412813,3.222013E-3,16.573133,9.177898E-3,15.604597,5.988681E-3,614.884827,1365.67432,9.844193,27.305021,2.773718,4.895,28.16929056,107.8,31.509712,34.985527,38.080193,23.529161,30.807434,32.80909,148.220123,140.134552,145.653015
nyu45604,588015510362194008,43.65829291,0.9394337,3325,41,6,399,GALAXY,15.886487,3.26731E-3,14.903192,2.490798E-3,16.032763,7.45847E-3,15.061383,6.766616E-3,1020.07251,1229.25281,9.064304,28.799732,3.177269,4.895,28.08835848,53.9,34.94508,46.090378,52.009338,30.139755,41.463318,51.408535,3.014874,172.359985,15.028604
nyu455986,587730848497074996,310.88281349,0.9633476,2583,40,6,53,GALAXY,16.672911,4.016256E-3,15.78384,3.189404E-3,16.796854,0.021975,15.899133,0.023128,1194.54224,436.067291,4.137249,12.609092,3.0477,4.895,28.16928981,107.8,25.715931,27.101444,31.797125,10.739765,15.651263,18.556799,171.072708,165.325897,177.705383
nyu455981,587730848497074453,310.89456136,0.96775156,2583,40,6,53,GALAXY,16.709259,4.208264E-3,15.858685,3.320085E-3,16.795315,0.01681,15.960485,0.015056,1234.58557,542.863037,4.929588,15.972727,3.240175,4.895,28.16928981,107.8,28.067467,35.332558,38.385414,18.731981,22.007143,24.1315,146.828873,148.31163,151.148682
nyu45592,588015510362194086,43.56686401,0.94846233,3325,41,6,399,GALAXY,17.151726,5.88623E-3,16.216848,5.321337E-3,17.150614,0.015223,16.284849,0.011366,1102.25232,398.118683,5.07658,15.787882,3.109945,4.895,28.08835848,53.9,25.538296,27.339027,28.02614,11.432526,14.219291,15.507112,155.446701,153.240356,152.652344
nyu455239,587730847966560281,325.36924356,0.60826632,2583,40,5,150,GALAXY,16.601501,4.173888E-3,15.719939,3.200831E-3,16.717159,0.016071,15.834126,0.033448,1782.79834,115.595741,5.671828,17.332041,3.055812,4.725,28.20825607,107.8,22.232782,29.387209,33.89082,20.846434,26.085665,29.710615,112.866257,86.853035,108.096367
nyu455175,587730847966167621,324.61296883,0.55310016,2583,40,5,144,GALAXY,17.553829,8.218667E-3,16.612398,5.384906E-3,17.659483,0.015669,16.715679,0.012987,1281.5791,1406.19641,6.673046,21.54637,3.228866,4.725,28.20825575,107.8,17.547327,25.37715,27.247158,16.775076,22.521143,25.960337,73.298782,13.24427,174.772873
nyu455154,587730847966036257,324.28145217,0.45261771,2583,40,5,142,GALAXY,17.272734,5.193639E-3,16.402679,3.927866E-3,17.347353,6.967465E-3,16.504898,5.61292E-3,368.358826,1114.51855,3.596909,10.520915,2.924988,4.725,28.20825558,107.8,17.242001,23.957701,20.777939,13.312167,15.033281,16.142576,34.383549,166.833405,170.383789
nyu455153,587730847966036255,324.28488192,0.44641978,2583,40,5,142,GALAXY,15.519488,2.87169E-3,14.606967,2.303906E-3,15.479668,0.013116,14.590656,0.013054,312.031708,1145.70459,11.734648,42.465755,3.618835,4.725,28.20825558,107.8,48.911732,65.183258,74.54023,46.438187,62.6189,71.22094,95.188171,135.245743,127.779404
nyu455152,587730847966036237,324.27071174,0.47894348,2583,40,5,142,GALAXY,16.644058,4.19692E-3,15.748209,3.212384E-3,16.785023,0.020676,15.881277,0.020896,607.638367,1016.84528,5.173407,15.350726,2.967237,4.725,28.20825558,107.8,28.370249,32.25243,38.76553,13.628557,20.682549,26.514225,168.106049,166.376373,158.476974
nyu455151,587730847966036157,324.25986493,0.4282534,2583,40,5,142,GALAXY,15.438025,3.232961E-3,14.455914,2.445625E-3,15.499373,0.010898,14.627693,0.028371,146.938721,918.268799,17.079576,49.925121,2.923089,4.725,28.20825558,107.8,72.17234,77.444992,80.386703,31.492508,41.051853,50.286732,78.168129,83.73597,84.7286
nyu454875,587730847964266999,320.20549323,0.53890728,2583,40,5,115,GALAXY,18.220236,9.521491E-3,17.32312,6.396139E-3,18.33382,0.020366,17.44688,0.014403,1152.69214,806.479797,3.604845,9.630878,2.671649,4.725,28.20825397,107.8,14.911809,17.821518,16.453714,6.723428,8.223813,10.409377,179.5952,169.478958,178.047562
nyu454809,587730847963939362,319.50361145,0.57086902,2583,40,5,110,GALAXY,16.35062,3.821225E-3,15.482195,2.988016E-3,16.38693,9.003115E-3,15.529974,8.643233E-3,1443.29456,1230.60388,7.132755,24.013428,3.366641,4.725,28.20825378,107.8,30.135075,39.097656,42.614254,26.247463,32.001766,36.355526,128.904449,136.113007,122.465607
nyu454768,587730847963546222,318.5960926,0.46125902,2583,40,5,104,GALAXY,18.575388,9.300901E-3,17.235903,5.508326E-3,18.387991,0.01155,17.297632,6.67706E-3,446.829315,1146.16882,2.477835,6.548785,2.642946,4.725,28.20825348,107.8,11.147757,14.177357,12.209316,8.415649,9.050178,11.338799,87.587898,91.337059,91.401085
nyu454725,587730847963153158,317.71531772,0.62587154,2583,40,5,98,GALAXY,18.187563,8.033279E-3,17.208815,5.540346E-3,18.241394,0.010937,17.267845,7.929713E-3,1942.79968,1304.68457,2.420425,6.460288,2.669071,4.725,28.20825317,107.8,11.236977,13.539216,-9999,6.915764,9.279271,-9999,7.82692,3.928584,-9999
nyu454698,587730847962956154,317.26456782,0.49095782,2583,40,5,95,GALAXY,18.743807,0.011337,17.709564,7.154774E-3,18.81612,0.019299,17.793526,0.012529,716.721375,1290.32324,2.946593,8.547477,2.9008,4.725,28.20825294,107.8,10.724887,14.567899,13.541915,7.98753,10.647438,12.146032,127.802277,130.124771,134.717712
nyu454664,587730847962431999,315.99308483,0.45609015,2583,40,5,87,GALAXY,16.814081,5.077553E-3,15.875057,3.630102E-3,17.004478,0.031164,16.048588,0.028996,399.961914,618.844971,6.914989,19.402073,2.805799,4.725,28.20825231,107.8,21.847473,29.867289,31.792702,17.944744,23.18376,23.888414,10.594342,1.391102,174.175613
nyu45465,588015510361604141,42.21630964,0.98952715,3325,41,6,390,GALAXY,14.23245,2.040894E-3,13.329494,1.783597E-3,14.309114,1.979568E-3,13.387164,1.633612E-3,1475.53113,370.094727,19.217258,54.931698,2.858457,4.895,28.08835905,53.9,68.769547,82.716148,88.046165,62.696594,73.899147,76.440361,112.293877,108.821861,109.193977
nyu454626,587730847962039204,315.16689252,0.61977349,2583,40,5,81,GALAXY,18.097939,8.669663E-3,17.091476,5.979566E-3,18.072981,0.014722,17.083673,8.960101E-3,1887.67908,1273.72668,3.955024,11.717475,2.962681,4.725,28.20825188,107.8,15.170666,18.30888,19.093075,11.28008,12.868045,13.680799,1.361471,172.601685,170.417908
nyu454574,587730847961711035,314.28892169,0.42923507,2583,40,5,76,GALAXY,17.453773,5.930802E-3,16.478518,4.218058E-3,17.554302,9.645157E-3,16.601053,5.636165E-3,156.036316,97.584671,3.921149,10.662438,2.719213,4.725,28.20825154,107.8,18.060808,20.197361,19.844639,9.986411,12.054368,12.34228,41.928406,39.860046,52.480007
nyu454385,587730847960596651,311.78016876,0.43018519,2583,40,5,59,GALAXY,14.425833,2.206172E-3,13.633978,1.98334E-3,14.498963,0.048533,13.668711,0.038787,164.780441,427.028931,12.621737,34.715591,2.750461,4.725,28.20825069,107.8,62.684196,74.277306,73.973808,30.917158,36.106361,40.57737,58.020763,57.067978,58.013535
nyu45406,588015510361210935,41.36486246,0.91434919,3325,41,6,384,GALAXY,14.294791,2.171499E-3,13.407364,1.872477E-3,14.403229,0.027369,13.570186,0.026539,791.415771,796.240173,20.171831,64.183128,3.18182,4.895,28.0883596,53.9,109.986282,133.827316,138.993164,46.801472,54.017712,61.082623,175.520981,174.593643,173.442581
nyu45400,588015510361211019,41.31843789,1.02824766,3325,41,6,384,GALAXY,17.081112,5.095066E-3,16.168015,3.74188E-3,17.198471,9.859497E-3,16.326752,7.359122E-3,1826.71509,374.031342,5.133763,14.66748,2.857062,4.895,28.0883596,53.9,22.902699,26.60985,31.121061,14.759777,18.034637,20.120905,13.303765,5.531641,17.875763
nyu453627,587730847429493179,325.01731711,0.04265403,2583,40,4,147,GALAXY,18.009052,8.40187E-3,17.14061,6.067483E-3,18.116817,0.014336,17.254457,0.011162,455.553467,998.154053,4.063521,11.281477,2.776281,4.76,28.17010273,107.8,14.916706,17.957148,20.098215,9.5323,11.466684,11.840546,62.202171,63.91325,63.216087
nyu453625,587730847429493162,325.00825354,0.05060655,2583,40,4,147,GALAXY,17.365383,5.53863E-3,16.447386,4.21812E-3,17.311022,0.010281,16.438545,7.589791E-3,527.83783,915.743103,5.018163,16.849289,3.357661,4.76,28.17010273,107.8,21.372118,25.480501,28.89316,16.953936,20.019495,21.774544,52.71442,48.873867,49.655441
nyu453617,587730847429492946,325.05470234,0.0311065,2583,40,4,147,GALAXY,16.769449,4.672787E-3,15.776484,3.503586E-3,16.925669,0.103393,15.980894,0.088172,350.610107,1338.05237,6.094127,19.408321,3.184758,4.76,28.17010273,107.8,38.673073,41.921619,43.194221,11.611977,14.176543,17.249325,89.815987,89.781563,90.03894
nyu453587,587730847429165179,324.24455017,0.13962863,2583,40,4,142,GALAXY,16.402958,4.164584E-3,15.504189,3.235223E-3,16.451231,8.088067E-3,15.58263,4.925852E-3,1337.4165,777.833862,10.267172,27.062031,2.635782,4.76,28.1701024,107.8,30.236612,34.76553,36.822132,29.641088,33.41983,34.819489,9.476512,150.694839,62.704899
nyu453493,587730847428575667,322.92130361,0.03601901,2583,40,4,133,GALAXY,17.115725,4.932457E-3,16.283758,3.958569E-3,17.11133,8.163345E-3,16.334944,5.734554E-3,395.579132,997.161987,5.209128,15.89673,3.051707,4.76,28.17010187,107.8,23.269068,23.479305,24.546022,16.860832,18.580406,19.246675,141.357468,135.904419,130.433167
nyu453457,587730847428379004,322.39157143,0.02666469,2583,40,4,130,GALAXY,17.031296,4.759766E-3,16.106218,3.689231E-3,17.12475,0.016091,16.228626,0.013686,310.65387,264.404755,4.936796,14.063705,2.848751,4.76,28.17010164,107.8,22.503174,29.032907,33.72295,14.616253,18.669346,22.353317,25.377701,20.771906,18.659216
nyu453421,587730847428247781,322.19924568,0.05037291,2583,40,4,128,GALAXY,16.307615,4.180567E-3,15.318964,3.122406E-3,16.409533,0.801208,15.454512,0.515824,526.258606,1237.86365,8.662383,25.239916,2.913738,4.76,28.1701015,107.8,45.005733,60.410179,64.041397,16.091845,19.681679,21.782831,101.33287,105.913841,107.775879
nyu453386,587730847427920285,321.38726257,0.08446629,2583,40,4,123,GALAXY,17.566462,5.928704E-3,16.68787,4.708061E-3,17.642479,9.059488E-3,16.778006,6.932972E-3,835.901672,660.850464,3.47597,9.619827,2.767523,4.76,28.17010122,107.8,16.749994,17.464109,20.521273,9.374703,10.778379,11.171142,97.580215,91.521164,101.213417
nyu453249,587730847426675379,318.6077294,0.01108855,2583,40,4,104,GALAXY,16.876795,4.776648E-3,15.919197,3.784404E-3,16.950207,0.016519,16.021231,0.013189,168.86731,1250.91479,4.962713,15.65611,3.154748,4.76,28.17010026,107.8,26.873327,33.11137,35.578663,13.57929,15.007351,17.273344,105.790672,105.615372,105.973709
nyu453144,587730847425692114,316.27120246,0.06830138,2583,40,4,89,GALAXY,17.459276,5.70091E-3,16.590488,4.779785E-3,17.534843,8.562718E-3,16.684284,6.446157E-3,688.930969,424.201813,3.667587,10.202821,2.781889,4.76,28.17009934,107.8,-9999,19.601908,-9999,-9999,11.688663,-9999,-9999,16.421421,-9999
nyu453132,587730847425560763,316.00228818,0.1783083,2583,40,4,87,GALAXY,17.192858,5.008329E-3,16.246513,3.878351E-3,17.21262,0.051682,16.286287,0.042748,1689.15881,701.398315,4.357386,14.185887,3.255596,4.76,28.17009918,107.8,21.673811,26.725468,29.776329,13.073332,16.414036,17.293344,42.768669,38.02158,37.78344
nyu453105,587730847425364576,315.5272022,0.20232618,2583,40,4,84,GALAXY,16.255482,3.992616E-3,15.319823,3.056386E-3,16.397243,0.01265,15.450032,0.011093,1907.62415,465.469818,9.366318,27.565977,2.943097,4.76,28.1700989,107.8,30.45653,40.686306,47.819752,26.230616,31.252201,33.978569,138.136215,149.463364,156.530029
nyu453102,587730847425364324,315.61168639,0.18143485,2583,40,4,84,GALAXY,17.931274,7.584328E-3,16.814781,5.008142E-3,17.960999,0.262562,16.898472,0.182466,1717.69788,1233.55212,4.109684,13.889648,3.379736,4.76,28.1700989,107.8,32.326408,44.495125,46.094288,8.920583,11.865845,12.358096,65.317322,67.64035,65.574852
nyu453074,587730847425102190,315.01671999,0.19838052,2583,40,4,80,GALAXY,16.763783,4.674079E-3,15.825286,3.537999E-3,16.845217,8.505158E-3,15.923499,6.238001E-3,1871.61584,1268.55103,7.011594,22.313173,3.182325,4.76,28.17009863,107.8,23.676476,29.874048,34.736023,22.897057,28.256121,33.223167,32.463638,65.337936,104.576736
nyu452948,587730847424316449,313.23103268,0.17090352,2583,40,4,68,GALAXY,17.737103,6.787562E-3,16.826857,5.06E-3,17.818916,0.015427,16.916769,0.015567,1621.7041,1366.87903,4.276599,13.170981,3.079779,4.76,28.17009788,107.8,20.056889,26.273012,28.030661,9.887279,12.191415,14.058494,63.776173,58.595306,60.925785
nyu452923,587730847424250549,312.99262652,0.1084377,2583,40,4,67,GALAXY,18.534153,0.014681,17.454643,0.010643,18.529406,0.036538,17.498808,0.033336,1053.69653,560.53656,5.979211,16.912817,2.828604,4.76,28.17009782,107.8,25.822826,32.252747,32.0289,5.931282,7.493333,8.485892,119.416557,117.766197,120.082268
nyu45292,588015510360227953,39.05020666,1.02458096,3325,41,6,369,GALAXY,18.012701,9.43308E-3,17.002119,5.750279E-3,17.799875,0.031691,16.873093,0.024398,1794.37439,170.384048,8.262088,24.159248,2.924109,4.895,28.08836015,53.9,31.293594,38.668861,41.460342,9.565947,12.534923,13.560056,12.087258,11.685905,14.172194
nyu452850,587730847423791750,312.02361024,0.06884447,2583,40,4,60,GALAXY,16.267174,3.467211E-3,15.33776,2.883862E-3,16.254841,0.036994,15.366613,0.02717,694.047363,1277.96924,5.549658,18.209549,3.281202,4.76,28.1700975,107.8,37.882988,42.753269,46.602089,18.139763,20.58889,22.251301,28.347731,26.976761,26.792385
nyu452819,587730847423529212,311.35271847,0.10203342,2583,40,4,56,GALAXY,17.260942,5.385906E-3,16.346867,4.134479E-3,17.249191,0.012322,16.352379,0.014198,995.795654,622.67157,5.218658,17.628967,3.378065,4.76,28.17009731,107.8,24.371948,27.43819,34.590427,13.8939,18.372683,20.048998,80.144501,79.559219,84.86187
nyu452809,587730847423398817,311.07375286,0.14086432,2583,40,4,54,GALAXY,17.542551,6.321763E-3,16.647985,4.784518E-3,17.631594,0.018302,16.730042,0.020995,1348.84924,808.712158,5.011435,14.781587,2.949572,4.76,28.17009721,107.8,23.127069,27.762461,32.018658,9.07197,12.905499,13.6328,36.17411,37.843151,42.140587
nyu45262,588015510359900231,38.39632416,0.96228053,3325,41,6,364,GALAXY,16.541895,4.473221E-3,15.609345,3.245043E-3,16.71026,0.028597,15.765408,0.080815,1228.46021,1031.54041,8.561714,27.281334,3.186434,4.895,28.08836043,53.9,32.433884,44.324345,52.759819,20.654245,32.180298,38.412247,8.267961,17.409836,27.574387
nyu45246,588015510359834662,38.17736242,0.97052709,3325,41,6,363,GALAXY,15.485607,2.683804E-3,14.756053,2.333695E-3,15.481989,4.517899E-3,14.759238,4.545473E-3,1303.39246,402.1427,8.159144,28.010712,3.433045,4.895,28.08836049,53.9,44.080582,49.765736,53.315521,28.027466,30.669359,35.306358,108.360161,109.357613,105.560249
nyu45232,588015510359703573,37.89552528,1.00382027,3325,41,6,361,GALAXY,16.852243,4.569395E-3,15.981433,3.47776E-3,16.93502,0.011617,16.112675,0.011444,1605.77686,562.307861,5.625793,16.660606,2.961468,4.895,28.08836064,53.9,25.472452,31.537415,30.106977,15.626196,18.976509,22.512573,47.452915,43.321365,49.810207
nyu452169,587730846893211901,326.29430373,-0.40355024,2583,40,3,156,GALAXY,18.553078,9.894956E-3,17.694614,7.190722E-3,18.477644,0.013407,17.612226,9.527537E-3,214.518661,358.106689,2.87012,7.548997,2.630203,4.72,28.20733756,107.8,9.538428,13.115864,11.920231,9.044259,10.879439,11.554095,5.302641,78.614853,58.283752
nyu452161,587730846893080879,326.10607328,-0.26408621,2583,40,3,154,GALAXY,16.88171,4.405621E-3,15.935847,3.419721E-3,17.008356,6.847354E-3,16.069975,7.258768E-3,1482.48413,1369.15869,3.938607,11.372684,2.887489,4.72,28.20733725,107.8,19.361956,22.52446,26.815544,14.36246,19.512375,19.389469,126.847321,124.444923,129.809692
nyu452158,587730846893080588,325.96377552,-0.32139792,2583,40,3,154,GALAXY,15.404827,2.763378E-3,14.488634,2.30391E-3,15.544661,0.021398,14.6304,0.032543,961.405945,75.556084,9.717124,29.581669,3.044282,4.72,28.20733725,107.8,38.171036,50.430187,55.188107,36.479244,44.858208,53.612785,49.858837,78.471199,50.722
nyu452137,587730846892884320,325.54259223,-0.28771763,2583,40,3,151,GALAXY,17.749233,6.023847E-3,16.798515,4.554651E-3,17.795418,0.033608,16.859831,0.032295,1267.61707,329.717896,2.689881,8.534104,3.17267,4.72,28.20733702,107.8,15.380326,18.836065,21.992828,10.221031,14.121231,15.123593,149.216644,132.567581,116.481613
nyu452114,587730846892622193,324.98577245,-0.24977905,2583,40,3,147,GALAXY,17.773714,6.831141E-3,16.822538,4.846722E-3,17.813959,0.014673,16.877829,0.012944,1612.47986,711.485229,3.327816,10.659827,3.20325,4.72,28.20733683,107.8,16.514389,20.797411,22.208513,11.432397,14.70774,18.735065,113.357193,118.704361,121.665443
nyu452068,587730846892360116,324.39827538,-0.30550687,2583,40,3,143,GALAXY,17.170143,5.23232E-3,16.221657,3.860882E-3,17.321035,0.017508,16.352964,0.016603,1105.94897,814.360229,4.566582,13.59503,2.977069,4.72,28.20733656,107.8,28.511599,35.329388,37.030949,10.303557,13.435276,16.17671,113.464653,117.438133,114.423477
nyu452003,587730846891770192,322.99252361,-0.27419116,2583,40,3,134,GALAXY,17.44771,5.933314E-3,16.486349,4.308014E-3,17.567591,0.011065,16.621464,9.133045E-3,1390.78284,283.698883,4.399089,12.565727,2.856438,4.72,28.20733618,107.8,17.212772,22.696423,24.38938,13.937155,17.402966,18.259325,23.929398,26.009348,6.423376
nyu451958,587730846891508199,322.39756491,-0.2707482,2583,40,3,130,GALAXY,16.500793,3.98669E-3,15.643678,3.177635E-3,16.662178,5.552808E-3,15.792665,4.151762E-3,1422.16162,318.82605,5.996026,17.425688,2.906206,4.72,28.20733596,107.8,22.486382,29.946552,34.080009,19.206732,25.821281,31.686674,179.373734,16.475515,36.296696
nyu451883,587730846890852804,320.91313669,-0.37643308,2583,40,3,120,GALAXY,17.633055,6.904147E-3,16.709677,4.996967E-3,17.792896,0.012967,16.905521,9.697557E-3,460.966125,433.663727,4.431097,11.8108,2.665435,4.72,28.20733537,161.7,16.570717,21.510265,22.958611,9.998157,12.080333,12.892615,175.871719,177.491241,165.856339
nyu451870,587730846890721781,320.59237821,-0.34546089,2583,40,3,118,GALAXY,17.14101,5.02171E-3,16.282114,3.945426E-3,17.22138,0.012235,16.388626,9.919212E-3,742.510376,239.503082,4.41734,13.647444,3.089516,4.72,28.20733524,107.8,22.034895,26.628616,32.739799,15.060269,17.593149,19.568838,140.847931,143.617355,142.24826
nyu451813,587730846890197363,319.38113916,-0.21303669,2583,40,3,110,GALAXY,18.004698,9.606351E-3,17.125042,6.835201E-3,18.05475,0.022641,17.183058,0.016929,1946.57629,116.281647,6.703103,20.064772,2.993356,4.72,28.20733463,107.8,20.931292,32.525768,35.975399,11.876253,14.614786,15.607499,57.44479,70.792961,64.931831
nyu451806,587730846890131999,319.3143334,-0.40986749,2583,40,3,109,GALAXY,17.688429,7.351356E-3,16.8454,5.424165E-3,17.848209,0.022313,16.99324,0.02067,157.245499,869.691833,4.817414,15.684495,3.255791,4.72,28.20733452,107.8,18.394962,25.41366,27.681089,13.770329,21.423094,25.945518,47.131176,50.522518,167.820084
nyu451772,587730846889869791,318.67132736,-0.41098267,2583,40,3,105,GALAXY,16.945488,4.771302E-3,16.000061,3.59389E-3,16.815403,0.01396,15.914742,0.011864,146.987289,468.06839,6.850599,18.501884,2.700769,4.72,28.20733439,161.7,28.983608,34.379486,33.087116,14.089121,17.243143,18.968407,7.377894,7.499812,11.228095
nyu451751,587730846889607588,318.04773399,-0.25869461,2583,40,3,101,GALAXY,15.581355,3.752875E-3,14.719954,3.933493E-3,15.51659,5.535869E-3,14.664789,3.451564E-3,1531.47363,243.142303,14.324729,37.780457,2.637429,4.72,28.20733412,107.8,64.782303,73.515892,70.689133,20.05481,23.326614,27.032156,159.696487,161.09938,158.732712
nyu451678,587730846888690470,316.06639803,-0.3188041,2583,40,3,87,GALAXY,16.711845,5.563406E-3,15.764255,4.109127E-3,16.637247,0.058011,15.768857,0.041969,985.05127,1284.36523,9.897988,27.834085,2.812095,4.72,28.20733334,161.7,47.747009,54.295639,60.362564,12.521837,14.189191,14.786741,113.103027,114.699768,113.738701
nyu451652,587730846888428121,315.37395994,-0.27673648,2583,40,3,83,GALAXY,17.7216,6.289447E-3,16.791639,4.677634E-3,17.811522,0.012325,16.89842,0.011468,1367.72864,433.421753,3.236553,8.971875,2.772046,4.72,28.20733299,161.7,15.414112,18.527008,21.099373,7.953884,9.358269,10.043002,76.727745,75.262123,71.623619
nyu451626,587730846888166065,314.78424358,-0.23948724,2583,40,3,79,GALAXY,17.070223,5.12019E-3,16.122025,3.825942E-3,17.104067,0.03364,16.181311,0.023937,1706.31018,516.428711,5.510462,18.092619,3.283321,4.72,28.20733291,161.7,21.223824,28.981283,31.464056,20.616163,24.072651,29.879755,105.019569,147.416794,151.821365
nyu451612,587730846888100435,314.60499418,-0.39968348,2583,40,3,78,GALAXY,18.248552,9.218738E-3,17.262541,6.283215E-3,18.104347,0.028786,17.174446,0.014551,250.020035,247.657578,5.179909,13.827395,2.669429,4.72,28.20733277,161.7,20.647825,24.169634,29.065664,8.06474,10.736423,11.429128,106.823624,109.076553,108.218079
nyu451611,587730846888100386,314.58808746,-0.35114157,2583,40,3,78,GALAXY,16.973747,4.763654E-3,16.023851,3.634205E-3,17.030073,0.026138,16.101742,0.023513,691.289368,94.002747,4.969286,15.856838,3.190969,4.72,28.20733277,161.7,23.914883,31.760693,35.185093,17.515392,20.491043,21.694063,105.715698,104.433594,115.429382
nyu451601,587730846888034774,314.55335728,-0.32437853,2583,40,3,77,GALAXY,16.920002,4.666264E-3,15.969926,3.592362E-3,17.023943,0.02464,16.07303,0.024889,934.579346,1139.50183,5.122519,15.653831,3.055886,4.72,28.20733279,161.7,26.857855,35.707779,38.526478,10.172177,12.484532,14.653009,121.4375,119.285156,118.034973
nyu450773,587730846355947733,325.46473944,-0.65745823,2583,40,2,150,GALAXY,17.657137,5.942835E-3,16.773605,4.626177E-3,17.732864,0.020711,16.849243,0.017658,1719.78345,981.46344,2.889731,8.212856,2.842083,4.6,28.17695766,107.8,15.907559,19.10939,21.365896,9.365536,13.296099,16.449453,99.521736,103.164833,97.164764
nyu450754,587730846355816760,325.07465114,-0.72886625,2583,40,2,148,GALAXY,16.346371,3.773345E-3,15.389414,2.943267E-3,16.426479,0.014989,15.475837,0.016411,1070.69458,157.262115,6.405344,21.309889,3.326893,4.6,28.17695752,107.8,32.527946,39.707722,43.701195,20.68969,26.808079,29.574419,124.925217,131.36731,124.869591
nyu450627,587730846354637027,322.46742864,-0.63128219,2583,40,2,130,GALAXY,14.618791,2.166625E-3,13.7885,1.962481E-3,14.755126,0.014663,13.930943,0.014682,1958.06726,952.586792,9.697886,31.399439,3.237761,4.6,28.17695636,107.8,72.627205,71.996216,78.548012,35.043697,41.965576,48.785416,136.040329,139.291245,134.698883
nyu450590,587730846354375085,321.80688147,-0.73348261,2583,40,2,126,GALAXY,17.17078,5.272804E-3,16.285154,4.032644E-3,17.244549,7.055402E-3,16.36327,5.288072E-3,1029.03064,391.637146,3.599313,10.302166,2.862259,4.6,28.17695611,107.8,17.941486,19.730896,-9999,11.365103,14.265347,-9999,95.006989,98.294762,-9999
nyu450568,587730846354243811,321.58301691,-0.75469263,2583,40,2,124,GALAXY,16.102198,3.529973E-3,15.20507,2.81004E-3,16.138176,6.158215E-3,15.236868,4.762883E-3,836.1745,1078.30835,8.808255,27.204893,3.088568,4.6,28.17695604,107.8,36.717354,44.12854,47.158676,24.856195,29.255985,31.910755,38.525875,32.058956,31.165052
nyu450542,587730846353981909,320.926645,-0.78490903,2583,40,2,120,GALAXY,17.152315,6.225268E-3,16.247328,4.505323E-3,17.123737,0.020964,16.230927,0.014623,561.400879,555.139954,9.639093,31.391834,3.256721,4.6,28.17695579,107.8,32.052963,44.044838,51.634476,15.933865,22.393562,24.055292,31.41855,29.849028,31.448439
nyu450467,587730846353195549,319.13572183,-0.75371804,2583,40,2,108,GALAXY,16.710058,4.575898E-3,15.752133,3.389108E-3,16.80336,0.015213,15.817845,0.015976,844.887512,605.764282,6.744002,22.915194,3.397863,4.6,28.17695513,107.8,29.961449,38.810135,44.67506,19.154943,26.943222,31.621294,79.702812,74.713135,75.064461
nyu450465,587730846353195485,319.09145972,-0.730287,2583,40,2,108,GALAXY,17.492727,7.804656E-3,16.575512,5.783564E-3,17.421185,0.028416,16.546078,0.056967,1057.87793,203.329086,10.357818,27.837877,2.68762,4.6,28.17695513,107.8,44.504326,45.152344,47.404011,8.035937,10.085825,13.033309,55.005493,55.517471,57.718395
nyu450460,587730846353195279,319.16708349,-0.77371572,2583,40,2,108,GALAXY,16.29001,3.843222E-3,15.35949,2.967959E-3,16.330242,8.032507E-3,15.389843,6.88479E-3,663.116516,890.904846,8.318811,28.494947,3.425363,4.6,28.17695513,107.8,32.977924,42.474979,48.307114,26.680189,34.829185,39.012184,40.44368,41.239872,43.469715
nyu450458,587730846353195226,319.14355754,-0.76509798,2583,40,2,108,GALAXY,17.550737,7.119752E-3,16.610933,5.021527E-3,17.466452,0.022633,16.535849,0.013026,741.443726,677.008667,7.311386,24.343069,3.329474,4.6,28.17695513,107.8,29.918699,33.649609,22.588367,19.579563,23.056326,18.217543,33.861366,20.470396,15.793689
nyu450379,587730846352474797,317.53399119,-0.77299881,2583,40,2,97,GALAXY,16.442001,3.933629E-3,15.5634,3.136609E-3,16.507992,0.01177,15.626829,0.010707,669.550598,1015.17358,6.166305,20.311283,3.293915,4.6,28.17695453,107.8,30.691202,36.497513,43.329594,21.177523,28.810642,33.817604,80.46209,77.278938,67.014793
nyu450324,587730846351753294,315.7922039,-0.66005589,2583,40,2,86,GALAXY,17.848612,7.242197E-3,16.832869,4.984081E-3,17.890228,0.01599,16.89011,0.01219,1696.44861,151.226318,3.942914,11.879185,3.012793,4.6,28.17695369,107.8,15.484912,20.326168,20.099785,11.768312,12.919904,14.070714,173.605728,7.68066,168.858017
nyu450306,587730846351491301,315.29533714,-0.63329965,2583,40,2,82,GALAXY,16.728046,4.427152E-3,15.762902,3.348435E-3,16.774162,0.0433,15.833635,0.033943,1939.68286,1078.1637,5.513155,18.300398,3.319406,4.6,28.17695335,107.8,25.679146,32.921535,38.38546,19.36348,27.862898,34.554852,70.594284,76.980003,62.131481
nyu450221,587730846350770343,313.60050807,-0.80876545,2583,40,2,71,GALAXY,16.235512,3.828969E-3,15.28314,2.908482E-3,16.263968,6.670512E-3,15.303506,4.5857E-3,344.388184,641.518127,9.321679,29.722754,3.188562,4.6,28.17695279,107.8,31.28989,42.497078,50.642498,28.105944,37.359577,38.05661,70.12883,70.476067,70.795341
nyu450214,587730846350705407,313.48163634,-0.64303999,2583,40,2,70,GALAXY,16.177418,3.802806E-3,15.194954,2.869163E-3,16.285597,6.983301E-3,15.308462,5.424526E-3,1850.83301,921.778259,8.641709,27.038099,3.128791,4.6,28.1769527,107.8,32.539761,41.185169,47.432991,26.961554,33.679447,37.667679,91.378105,93.133888,94.241653
nyu450207,587730846350705096,313.39136526,-0.80697308,2583,40,2,70,GALAXY,17.902504,8.208667E-3,16.929323,5.576737E-3,17.873846,0.025623,16.95545,0.021591,360.629486,101.250603,5.148389,17.264593,3.353397,4.6,28.1769527,107.8,25.186867,30.817829,37.673302,12.559721,16.395144,16.074205,37.932648,37.34359,39.971558
nyu450183,587730846350639762,313.26032025,-0.66522919,2583,40,2,69,GALAXY,17.411646,6.945826E-3,16.411297,6.704907E-3,17.454149,0.024488,16.471626,0.023092,1649.17798,270.921967,3.21015,10.27867,3.201929,4.6,28.17695261,107.8,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999
nyu450175,587730846350574517,313.2103959,-0.77549564,2583,40,2,68,GALAXY,16.867439,5.042891E-3,15.866393,3.655296E-3,17.052195,0.093823,16.063618,0.079239,646.809998,1178.16052,5.894628,18.049263,3.061985,4.6,28.17695259,107.8,35.40276,43.889526,43.315739,9.360182,10.888032,13.224261,154.223282,151.027695,152.669052
nyu450161,587730846350508656,312.94817879,-0.72468427,2583,40,2,67,GALAXY,18.434269,9.301687E-3,17.442791,6.324894E-3,18.530037,0.015299,17.535482,0.011176,1108.6875,155.177353,2.784523,8.025945,2.882341,4.6,28.17695268,107.8,11.979939,15.802798,16.872074,8.307492,11.761073,12.587021,39.318413,36.158604,45.952084
nyu450159,587730846350443441,312.93771545,-0.71538734,2583,40,2,66,GALAXY,16.661392,4.535986E-3,15.611333,3.246368E-3,16.765163,0.053123,15.698009,0.049133,1193.06836,1421.19421,6.685093,21.144394,3.162917,4.6,28.17695251,107.8,27.684217,36.153664,39.858089,19.752203,25.21382,26.939501,12.871079,9.95758,7.651435
nyu450135,587730846350377667,312.71160063,-0.73079291,2583,40,2,65,GALAXY,15.900376,3.392844E-3,14.937833,2.648239E-3,15.948851,0.012369,14.995116,0.012696,1053.11975,726.415527,10.342679,35.56144,3.43832,4.6,28.17695242,107.8,39.563206,49.473515,55.135056,31.655352,43.039349,50.331753,175.786438,177.533295,162.180222
nyu450134,587730846350377631,312.69125163,-0.77481856,2583,40,2,65,GALAXY,18.776165,0.014082,17.736078,8.771665E-3,18.696621,0.040924,17.662369,0.050089,652.905579,541.417542,5.725516,17.282139,3.018442,4.6,28.17695242,107.8,27.741405,30.149134,36.497749,5.108694,6.505203,6.821219,141.476395,139.449112,140.647293
nyu44955,588015510357540993,33.0383935,1.0388683,3325,41,6,328,GALAXY,16.70583,4.068644E-3,15.81258,3.216562E-3,16.777605,0.054848,15.899009,0.049154,1924.72644,1322.65259,4.221576,14.010743,3.318842,4.895,28.08836233,53.9,29.995644,34.873459,38.110168,12.034885,15.986115,18.566521,137.85466,142.023651,141.682312
nyu449477,587730845818749516,324.72348135,-1.13485882,2583,40,1,145,GALAXY,17.469908,0.014483,16.286274,6.925638E-3,17.853077,0.0399,16.632891,0.020029,1196.0282,1045.61902,12.998408,38.656754,2.973961,4.71,28.21166115,107.8,21.42367,34.668152,42.54245,14.414914,22.785143,27.234919,145.875961,145.834732,135.01091
nyu449345,587730845817307489,321.39003766,-1.23551834,2583,40,1,123,GALAXY,17.381748,7.270914E-3,16.537682,4.894902E-3,17.428358,0.017237,16.568932,0.010644,281.181458,682.826294,7.588344,23.340443,3.075828,4.71,28.21165964,107.8,20.365122,27.855099,29.456968,17.759123,22.243484,24.622084,25.752119,5.1176,44.306107
nyu449330,587730845817176542,321.08040765,-1.22946842,2583,40,1,121,GALAXY,17.819996,8.786595E-3,16.936222,6.005473E-3,17.747026,0.020575,16.861721,0.012551,335.885101,590.116882,5.941374,20.106325,3.38412,4.71,28.21165955,107.8,17.343594,23.056026,24.344084,14.701014,21.092585,23.333532,27.475252,24.159405,109.301903
nyu449329,587730845817176522,321.07091363,-1.23137922,2583,40,1,121,GALAXY,17.096466,6.741948E-3,16.058201,4.220619E-3,17.314941,0.063031,16.281952,0.078344,318.515015,503.78833,6.675075,22.363434,3.35029,4.71,28.21165955,107.8,35.721027,41.600231,41.630047,9.690814,12.22062,13.588449,127.595886,125.650368,127.609901
nyu449318,587730845817045512,320.86281592,-1.19197379,2583,40,1,119,GALAXY,17.582958,6.104722E-3,16.67074,4.370696E-3,17.627409,0.013071,16.733772,0.010206,676.93335,1334.104,3.265801,8.835042,2.705322,4.71,28.2116594,107.8,15.059493,16.77977,17.381468,8.773099,11.8453,13.85079,33.674156,17.459513,24.346458
nyu449268,587730845816520978,319.65071731,-1.14219186,2583,40,1,111,GALAXY,17.995922,8.310803E-3,17.135284,5.608246E-3,17.987795,0.022714,17.110394,0.023246,1129.59424,1202.7644,4.049055,13.902689,3.433564,4.71,28.21165901,107.8,14.4522,21.41638,23.447535,13.092696,18.241817,18.412777,66.713234,81.887459,40.083706
nyu449256,587730845816324552,319.12005335,-1.09882503,2583,40,1,108,GALAXY,16.991257,5.685601E-3,16.11157,3.956622E-3,17.148912,0.011626,16.288475,0.010616,1523.92407,461.515961,6.055272,16.356173,2.701146,4.71,28.21165885,107.8,24.533104,28.716234,30.878044,13.924961,16.954937,18.85845,174.096252,174.028809,170.196777
nyu449210,587730845815865878,318.07160383,-1.05284032,2583,40,1,101,GALAXY,18.013012,7.479177E-3,17.163418,5.366686E-3,18.034016,0.034677,17.184904,0.06792,1941.97632,456.7901,2.721622,8.063862,2.962888,4.71,28.21165851,107.8,11.626822,13.855062,14.292155,9.290207,11.337514,13.033702,161.992035,10.860125,152.355972
nyu449180,587730845815406938,317.08959605,-1.13700784,2583,40,1,94,GALAXY,16.10828,3.883926E-3,15.187846,2.819896E-3,16.225809,7.129843E-3,15.290397,3.836534E-3,1176.53613,1056.26123,8.978908,25.45359,2.83482,4.71,28.21165803,107.8,38.300198,43.43951,45.212109,20.100237,23.625818,24.835234,12.215451,14.856542,12.723013
nyu449177,587730845815341325,316.91508527,-1.22819559,2583,40,1,93,GALAXY,16.241648,4.242139E-3,15.159187,2.823295E-3,16.343779,0.071643,15.336073,0.038469,347.419006,830.473022,8.544922,26.243908,3.071287,4.71,28.21165803,107.8,32.972355,43.370163,46.05471,27.178776,33.844067,42.476971,79.626228,50.185314,53.392109
nyu449056,587730845813899793,313.57073193,-1.24917288,2583,40,1,71,GALAXY,17.199924,6.182766E-3,16.13455,3.904765E-3,17.347284,0.013236,16.310312,9.525132E-3,156.814499,368.790863,5.399648,15.639123,2.896323,4.71,28.21165638,107.8,21.84169,26.990005,33.421173,13.590163,21.353662,23.272869,9.555028,21.091127,20.684002
nyu44893,588015510356885551,31.43556678,0.87783481,3325,41,6,318,GALAXY,15.90189,3.156319E-3,15.077566,2.593878E-3,16.066416,8.119579E-3,15.258388,6.340175E-3,461.20459,363.069702,6.640757,20.124617,3.03047,4.895,28.08836278,53.9,48.027531,54.58382,59.276505,28.114193,32.604748,36.6003,128.826904,127.760857,125.509811
nyu44889,588015510356820164,31.38510463,0.96444271,3325,41,6,317,GALAXY,17.432707,5.508831E-3,16.550285,4.117791E-3,17.487268,7.65989E-3,16.618322,5.277117E-3,1248.62744,1265.14697,3.761198,10.762791,2.861532,4.895,28.08836278,53.9,15.597359,20.346972,21.220034,13.392652,16.24506,17.739067,151.890137,150.261261,149.667068
nyu44862,588015510356623503,30.80754092,1.00676938,3325,41,6,314,GALAXY,16.498413,3.835954E-3,15.59812,3.048121E-3,16.599138,0.044091,15.718537,0.044572,1633.06213,97.667419,4.925314,16.217899,3.292764,4.895,28.08836301,53.9,32.989933,39.437336,38.990429,11.682213,15.954294,22.874269,18.103306,16.788551,20.791687
nyu44861,588015510356558006,30.79527807,0.98214806,3325,41,6,313,GALAXY,17.187969,5.661996E-3,16.338028,4.197371E-3,17.337862,0.010669,16.509422,8.861635E-3,1409.2843,1347.20801,6.052254,16.375898,2.705752,4.895,28.08836303,53.9,23.383797,26.660786,28.862846,12.813055,16.20664,16.982658,154.806793,157.799759,150.878815
nyu44829,588015510356295872,30.18111532,1.01946387,3325,41,6,309,GALAXY,18.047136,9.979738E-3,17.056913,6.412168E-3,18.186501,0.04707,17.290794,0.037009,1748.25085,1208.13074,5.880286,17.799059,3.026903,4.895,28.08836342,53.9,27.900501,32.478214,41.012115,8.819793,10.691844,10.377241,102.777603,103.348198,106.502831
nyu44781,588015510355902642,29.24617176,0.90076189,3325,41,6,303,GALAXY,17.76778,7.02689E-3,16.862385,4.898564E-3,17.825615,0.010668,16.918089,7.847555E-3,669.497864,875.353577,3.899178,11.522373,2.955078,4.895,28.08836366,53.9,16.553804,-9999,-9999,10.592155,-9999,-9999,145.652664,-9999,-9999
nyu44780,588015510355902631,29.2419659,0.94402678,3325,41,6,303,GALAXY,18.122496,0.010052,17.231329,7.982228E-3,18.181988,0.015977,17.29497,0.011605,1062.88293,837.028198,4.613041,13.983815,3.031366,4.895,28.08836366,53.9,14.279253,18.688192,23.371489,11.318707,15.016933,14.836841,160.347305,154.954117,148.850174
nyu44765,588015510355837122,29.12514622,1.04513102,3325,41,6,302,GALAXY,18.380983,0.010806,17.468075,8.402245E-3,18.437639,0.016617,17.521643,0.011039,1981.64746,1135.84985,3.983654,11.397337,2.861026,4.895,28.08836371,53.9,13.163881,15.048458,17.499104,9.861046,12.44645,13.862238,6.575356,173.743408,0.463036
nyu44757,588015510355837046,29.06555397,1.04130967,3325,41,6,302,GALAXY,16.97183,4.463061E-3,16.020418,3.380603E-3,17.050039,6.810813E-3,16.102993,6.394682E-3,1946.96204,594.145569,3.862861,11.558596,2.992238,4.895,28.08836371,53.9,17.786333,23.888838,28.401222,15.761024,21.896292,22.64566,155.201614,170.941895,151.574554
nyu44756,588015510355837043,29.05759171,1.01175028,3325,41,6,302,GALAXY,18.277075,9.053933E-3,17.33263,6.017601E-3,18.282808,0.013453,17.356632,8.958544E-3,1678.44971,521.807434,3.555052,10.396876,2.924536,4.895,28.08836371,53.9,12.576516,16.162819,16.496422,10.119655,12.433942,13.16157,31.657463,36.87925,32.206165
nyu44751,588015510355837011,29.02587288,1.00795565,3325,41,6,302,GALAXY,18.349157,0.010104,17.455818,7.11374E-3,18.460382,0.016098,17.562216,0.011204,1643.98096,233.480438,3.829016,10.620137,2.773594,4.895,28.08836371,53.9,13.864518,16.213888,19.021982,8.291621,11.245729,14.024753,168.699921,159.872696,155.45256
nyu44750,588015510355837010,29.02301096,0.96644689,3325,41,6,302,GALAXY,18.075069,8.207217E-3,17.129498,5.346193E-3,18.108133,0.023229,17.155962,0.02071,1266.72449,207.53215,3.278904,10.3696,3.16252,4.895,28.08836371,53.9,16.46212,21.585426,22.135185,7.592966,10.899251,14.29382,122.535599,122.092293,128.513412
nyu44681,588015510355509403,28.29222962,1.02512086,3325,41,6,297,GALAXY,17.582394,6.02599E-3,16.689651,4.572696E-3,17.664713,0.010168,16.770786,9.110567E-3,1799.88513,369.536957,3.125835,8.923125,2.854637,4.895,28.088364,53.9,17.302874,20.588835,25.732746,9.255711,13.110647,13.700496,130.654434,117.628227,125.104553
nyu44680,588015510355509384,28.28454554,1.03073273,3325,41,6,297,GALAXY,16.457129,4.171232E-3,15.530459,3.105302E-3,16.474449,8.29267E-3,15.590268,6.756404E-3,1850.8562,299.673645,9.116346,29.902082,3.280051,4.895,28.088364,53.9,31.021864,39.328754,44.135853,28.172756,35.62875,39.052811,118.451111,3.554836,9.388482
nyu44679,588015510355509383,28.29036201,1.0334092,3325,41,6,297,GALAXY,16.914215,4.463464E-3,16.021717,3.448668E-3,16.988419,0.028039,16.104824,0.027114,1875.17151,352.54715,4.327801,13.776868,3.183341,4.895,28.088364,53.9,24.403172,27.391691,29.421736,12.787817,18.197336,21.556742,57.681213,55.502823,41.063198
nyu44675,588015510355509358,28.26455281,1.02305232,3325,41,6,297,GALAXY,17.253357,6.906467E-3,16.347168,4.861818E-3,17.471275,0.01555,16.594275,0.010079,1781.07422,117.931313,8.335819,23.633188,2.835137,4.895,28.088364,53.9,37.190197,41.097404,40.049068,8.515647,12.077379,14.067879,161.359436,166.216202,165.514618
nyu44674,588015510355443952,28.25255595,0.90353823,3325,41,6,296,GALAXY,17.229593,7.044185E-3,16.373047,5.953231E-3,17.345234,0.01545,16.493101,0.016012,694.745361,1370.11023,4.574808,12.813163,2.800809,4.895,28.08836407,53.9,20.940617,25.333448,25.671646,10.021811,11.38901,13.215446,89.655815,91.294441,85.766502
nyu44661,588015510355443875,28.17364132,0.85520339,3325,41,6,296,GALAXY,17.610399,7.912297E-3,16.744646,6.551838E-3,17.662107,8.68428E-3,16.798128,5.952855E-3,255.221741,652.851685,3.628098,10.629239,2.9297,4.895,28.08836407,53.9,15.106193,17.928572,18.432716,11.187901,13.677866,14.749028,108.788338,120.085381,118.80719
nyu44649,588015510355378267,27.96248923,0.97726466,3325,41,6,295,GALAXY,16.712515,5.944831E-3,15.828444,5.233346E-3,16.808653,0.016886,15.934756,0.01611,1364.99902,94.123596,4.570914,13.907025,3.042504,4.895,28.08836405,53.9,26.791176,30.244925,34.523388,11.94793,16.055443,19.960842,172.790955,169.960556,167.105591
nyu44583,588015510354853948,26.81561809,0.96335693,3325,41,6,287,GALAXY,15.573974,3.027204E-3,14.696712,2.410592E-3,15.682104,4.620759E-3,14.816063,3.186184E-3,1238.43384,556.75531,12.453534,37.158867,2.983801,4.895,28.08836446,53.9,40.669861,49.098713,52.877064,37.286213,45.952381,49.95969,88.8573,79.331696,97.026367
nyu44577,588015510354788461,26.6239064,0.95469961,3325,41,6,286,GALAXY,16.218971,3.768358E-3,15.288782,2.865034E-3,16.391031,6.44425E-3,15.466929,5.616797E-3,1159.71423,175.115143,7.913112,21.187119,2.67747,4.895,28.08836449,53.9,30.015537,35.22908,38.758732,19.475872,27.064129,30.008129,78.148338,81.154716,80.430611
nyu44572,588015510354722876,26.50857105,0.91048211,3325,41,6,285,GALAXY,17.808836,7.362343E-3,16.910404,5.430302E-3,17.825949,0.01286,16.946661,8.486417E-3,757.672546,487.753662,4.65293,13.733948,2.951677,4.895,28.08836458,53.9,16.036329,18.906101,19.79973,13.403873,15.614823,17.615828,92.120293,85.311394,85.365303
nyu44569,588015510354657446,26.43025029,0.878736,3325,41,6,284,GALAXY,16.568316,4.472961E-3,15.62606,3.273615E-3,16.648697,0.010461,15.760077,8.225251E-3,469.033142,1136.86475,8.276096,26.136454,3.158066,4.895,28.08836459,53.9,29.186165,35.240677,41.710194,23.287771,31.043907,33.008213,2.075126,29.353287,44.430981
nyu44476,588015510353936535,24.73257917,0.86972597,3325,41,6,273,GALAXY,16.987549,4.84653E-3,16.170187,3.895058E-3,17.05789,6.434379E-3,16.236795,4.835531E-3,386.639252,674.949158,4.648764,14.285616,3.072992,4.895,28.08836511,53.9,18.262495,22.698639,23.877649,16.607986,19.885036,21.076029,88.445656,52.757885,73.672943
nyu44466,588015510353805384,24.48213863,1.00137015,3325,41,6,271,GALAXY,14.923591,2.412707E-3,14.031158,2.007973E-3,15.000077,4.005532E-3,14.109883,3.442311E-3,1583.2063,1120.05664,14.737557,49.034973,3.327212,4.895,28.08836524,53.9,56.533596,70.535255,76.260651,49.64077,62.390293,69.103874,101.174553,103.086098,111.723312
nyu44465,588015510353805483,24.46951511,1.04300211,3325,41,6,271,GALAXY,15.737302,3.368472E-3,14.842405,2.667491E-3,15.891057,0.041758,15.033375,0.038223,1961.41284,1005.25031,10.442863,31.458441,3.012435,4.895,28.08836524,53.9,56.931023,56.492622,63.329315,16.618925,21.220064,23.368496,33.820343,35.195908,35.277515
nyu44456,588015510353739953,24.35588578,0.97733133,3325,41,6,270,GALAXY,15.73677,3.078115E-3,14.871804,2.458951E-3,15.831024,6.40074E-3,14.967185,6.334779E-3,1364.62976,1333.50732,9.315335,31.017042,3.329675,4.895,28.08836527,53.9,37.74469,47.80883,52.601654,33.059559,44.172913,48.331085,60.131008,55.928173,38.992954
nyu44382,588015510353084643,22.83362931,0.93558665,3325,41,6,260,GALAXY,18.264544,9.482616E-3,17.361933,6.783733E-3,18.320084,0.022268,17.461988,0.019684,984.661987,1105.91296,3.479752,10.548157,3.031295,4.895,28.08836587,53.9,18.679497,21.584253,22.286386,8.141416,9.221953,11.022326,119.410629,120.869041,122.051727
nyu44306,588015510352363607,21.20386896,0.91001811,3325,41,6,249,GALAXY,15.054616,2.487542E-3,14.30553,2.166095E-3,15.116076,4.864606E-3,14.421749,4.750398E-3,751.486877,1261.64233,11.433881,32.188869,2.815218,4.895,28.0883665,107.8,49.537735,57.526436,63.505463,35.480614,42.41922,45.717609,38.457439,28.283133,40.451374
nyu44276,588015510352101500,20.61805779,0.8983494,3325,41,6,245,GALAXY,16.825148,5.424482E-3,15.957809,4.019694E-3,16.949068,0.03198,16.149742,0.026753,644.991333,1380.42578,6.976284,21.742298,3.116602,4.895,28.08836679,107.8,39.918915,46.475956,49.764999,12.785893,13.913345,16.382183,2.305344,3.990891,2.798495
nyu44241,588015510351970383,20.20530221,0.96795,3325,41,6,243,GALAXY,17.455938,5.724371E-3,16.575033,4.260666E-3,17.541145,0.017586,16.698002,0.013371,1277.61987,350.214233,3.691707,10.24973,2.77642,4.895,28.08836691,107.8,18.251085,22.721512,26.538622,12.251098,14.441813,15.851006,51.343948,50.69165,48.631065
nyu44233,588015510351839306,19.87566245,1.0413055,3325,41,6,241,GALAXY,16.957729,5.21215E-3,16.123264,3.938048E-3,17.051067,8.779516E-3,16.260918,6.511443E-3,1944.10901,75.633446,6.548428,19.725954,3.012319,4.895,28.08836701,107.8,24.054106,28.130318,32.736233,18.805483,22.405251,23.241743,33.963322,44.115921,39.144596
nyu44231,588015510351773825,19.81091748,1.01783491,3325,41,6,240,GALAXY,17.418215,5.793931E-3,16.539673,4.2683E-3,17.346159,0.027247,16.47823,0.025778,1730.9502,848.112,5.910694,16.747784,2.833472,4.895,28.08836706,107.8,24.944733,27.132986,30.69043,9.56877,13.038706,13.152308,32.108456,32.797832,33.542076
nyu44154,588015510351183991,18.49026172,1.00141509,3325,41,6,231,GALAXY,16.668852,5.639309E-3,15.772898,4.583379E-3,16.64369,0.011059,15.73371,6.764343E-3,1581.37476,1092.43115,9.052363,27.298061,3.015573,4.895,28.08836758,107.8,30.842001,34.67271,37.107128,26.4186,33.032436,35.388218,99.233528,131.05777,87.20076
nyu44025,588015510350463115,16.84406831,0.92594129,3325,41,6,220,GALAXY,14.01259,1.885619E-3,13.200281,1.742472E-3,14.097193,5.176752E-3,13.290751,5.504641E-3,894.92041,1100.10303,11.566728,38.365677,3.3169,4.895,28.08836809,107.8,67.768814,78.102913,82.889122,56.795776,65.966896,70.43438,41.931686,34.939213,36.921734
nyu44019,588015510350463162,16.75578242,0.90982909,3325,41,6,220,GALAXY,15.957501,3.407622E-3,15.065269,2.696161E-3,15.915421,6.250923E-3,15.05619,5.085737E-3,748.306335,297.509155,11.200213,35.913097,3.206465,4.895,28.08836809,107.8,43.083645,56.056664,61.407677,30.448452,36.598915,41.848587,170.183182,174.950348,169.279266
nyu43997,588015510350397519,16.59442407,0.98094495,3325,41,6,219,GALAXY,17.231945,6.202789E-3,16.373407,4.527181E-3,17.106266,0.061383,16.310041,0.041811,1394.78345,191.51532,8.479836,25.460535,3.002479,4.895,28.08836815,107.8,37.735226,40.415661,38.525406,10.958096,12.877346,15.169239,118.361122,118.58139,116.153488
nyu43969,588015510350200967,16.21739255,0.85630008,3325,41,6,216,GALAXY,15.988309,3.480002E-3,15.074865,2.751339E-3,16.158878,0.066554,15.30067,0.055791,261.289917,847.290222,7.678512,24.554667,3.197842,4.895,28.08836833,107.8,78.459129,81.252701,81.686234,13.94251,16.247446,18.208292,108.112801,108.036369,106.56205
nyu43861,588015510349283427,14.09627415,0.90536305,3325,41,6,202,GALAXY,18.115509,9.509412E-3,17.18256,6.845094E-3,18.068384,0.017901,17.168791,0.017202,707.213135,619.076111,5.550124,14.456129,2.60465,4.895,28.08836885,107.8,19.505848,25.849117,28.677645,9.303325,10.46944,11.599858,157.234543,158.09343,156.432739
nyu43844,588015510349152365,13.78022467,0.95110577,3325,41,6,200,GALAXY,17.164623,5.684778E-3,16.319765,4.195088E-3,17.262487,7.193085E-3,16.419878,5.311701E-3,1122.9801,468.025391,4.305331,12.548716,2.914692,4.895,28.088369,107.8,18.100685,-9999,-9999,14.94126,-9999,-9999,165.159576,-9999,-9999
nyu43835,588015510349086799,13.59914067,0.94279932,3325,41,6,199,GALAXY,17.016457,5.480535E-3,16.043661,3.849936E-3,16.954258,0.030611,16.008198,0.025861,1047.51074,182.922623,9.074655,25.109333,2.766974,4.895,28.088369,107.8,39.258278,45.49065,52.750061,11.3957,14.707324,15.636664,172.253647,172.765732,173.820358
nyu43827,588015510349021281,13.43930151,0.92688393,3325,41,6,198,GALAXY,16.059315,3.352192E-3,15.201774,2.715253E-3,16.028164,0.014009,15.205378,0.012883,902.761902,90.90979,7.914552,27.622601,3.490103,4.895,28.08836905,107.8,39.235489,48.823868,54.047348,29.166656,33.017784,34.573307,122.864693,120.663292,124.795967
nyu43822,588015510349021203,13.46976536,0.97960048,3325,41,6,198,GALAXY,14.839561,2.404755E-3,13.970912,2.037316E-3,14.918015,5.933979E-3,14.083155,5.513619E-3,1381.98218,367.757111,16.614172,52.25367,3.145127,4.895,28.08836905,107.8,66.950058,81.558372,87.268822,43.932022,57.04208,65.940292,159.672974,161.467484,164.160995
nyu43799,588015510348824672,13.02796327,1.0212997,3325,41,6,195,GALAXY,16.850466,5.233659E-3,15.95603,4.591119E-3,16.886221,0.019695,16.003473,0.017555,1760.88318,434.624512,5.207042,17.465937,3.354292,4.895,28.08836913,107.8,28.503439,35.154858,-9999,16.196756,20.439142,-9999,118.522713,117.282181,-9999
nyu43795,588015510348759172,12.92864744,1.0286342,3325,41,6,194,GALAXY,16.690731,4.484483E-3,15.779062,3.363328E-3,16.716249,9.11361E-3,15.805122,0.010157,1827.54883,892.734863,7.137648,24.369305,3.414192,4.895,28.08836914,107.8,26.605312,36.845913,40.167404,22.243309,26.725674,29.362215,9.243303,15.085773,11.528518
nyu43782,588015510348628086,12.68274898,1.02727861,3325,41,6,192,GALAXY,16.279606,3.642659E-3,15.386556,2.865053E-3,16.321999,0.012902,15.459471,0.011003,1815.12122,1379.31763,6.260574,20.391867,3.257188,4.895,28.08836931,107.8,27.4312,34.07217,35.254654,24.797483,28.715565,32.951992,12.797553,34.470734,37.096165
nyu43763,588015510348562576,12.45764627,0.95784509,3325,41,6,191,GALAXY,17.253183,5.97785E-3,16.499722,4.586229E-3,17.264772,0.010071,16.530611,7.606314E-3,1183.90979,694.159607,5.679626,17.586327,3.096388,4.895,28.08836938,107.8,19.867622,23.506321,25.013079,18.12392,21.39093,23.67598,175.629761,173.824814,156.906219
nyu43629,588015510347710549,10.54713595,0.90454647,3325,41,6,178,GALAXY,14.808276,2.259592E-3,14.000225,2.002242E-3,14.935484,8.712534E-3,14.14363,8.080495E-3,699.135376,1020.38818,7.984119,25.008785,3.132316,4.895,28.08836976,107.8,46.897881,56.880878,61.139179,44.57827,54.029198,57.965744,159.226212,172.847046,9.176905
nyu43253,588015510344433791,3.05897295,1.04509226,3325,41,6,128,GALAXY,17.824194,9.252723E-3,16.783098,5.837926E-3,17.945724,0.046998,16.946354,0.058854,1976.54309,997.342957,6.477801,21.710321,3.351496,4.895,28.08837078,107.8,26.746601,34.441669,37.008648,8.397606,10.41234,11.768347,63.909782,64.963249,56.206696
nyu43118,588015510343778385,1.50761944,0.94685386,3325,41,6,118,GALAXY,18.587643,0.01987,17.684196,0.013248,18.491253,0.046845,17.581934,0.030518,1083.59998,504.82132,10.998362,26.257648,2.387415,4.895,28.08837106,107.8,16.721119,21.258287,24.390663,13.962662,18.934141,19.033058,166.488174,129.501999,119.087791
nyu43117,588015510343778384,1.50353842,0.94762813,3325,41,6,118,GALAXY,17.824926,7.243708E-3,16.829254,4.933239E-3,17.840551,0.01732,16.900732,0.013189,1090.63953,467.719147,4.030509,12.283133,3.047539,4.895,28.08837106,107.8,17.396391,20.480305,24.923796,12.426632,17.040915,20.9793,89.164703,89.401321,90.001778
nyu43067,588015510343581828,1.05770705,1.00118851,3325,41,6,115,GALAXY,16.557594,4.237125E-3,15.686088,3.236192E-3,16.664801,6.847626E-3,15.778284,8.663996E-3,1577.5354,497.649323,6.544525,19.580015,2.991816,4.895,28.08837109,107.8,30.78149,35.943707,38.282688,14.675252,16.963362,19.076677,41.591515,42.070065,42.20068
nyu42818,588015510342205623,357.94752666,0.97276404,3325,41,6,94,GALAXY,16.851892,4.828885E-3,15.953587,3.579445E-3,16.856556,0.013049,15.999583,0.010874,1319.45483,804.784546,6.573499,21.319838,3.243301,4.895,28.08837122,107.8,29.232723,36.857811,41.454155,19.630079,23.688047,28.320362,169.84407,168.321411,170.734314
nyu42704,588015510341353597,356.06470019,0.9463418,3325,41,6,81,GALAXY,17.393633,6.639106E-3,16.470312,4.680861E-3,17.532408,0.045715,16.63076,0.040895,1079.52478,1381.4187,5.18076,15.914007,3.071751,4.895,28.0883712,107.8,27.254862,32.93882,35.648911,9.412006,10.923149,13.466812,34.640549,30.706814,27.508558
nyu4107,588015510354198682,25.32544723,0.84007605,3325,41,6,277,GALAXY,16.974117,5.138921E-3,16.057552,3.801904E-3,17.025602,0.076276,16.162975,0.064416,117.302498,620.89032,5.342546,17.74749,3.321916,4.895,28.08836497,53.9,36.032829,39.358166,43.13419,11.296741,13.718227,14.600471,38.022903,39.658657,38.199471
nyu4092,587731513680265373,20.53234837,0.81072391,2738,40,5,55,GALAXY,16.890554,4.332121E-3,15.962555,3.345182E-3,16.989738,0.019238,16.081896,0.019996,1723.83105,1052.75415,4.987259,14.269541,2.861199,4.725,28.29757792,161.7,25.861225,28.2216,28.909685,10.774446,14.685163,16.03096,109.636337,116.841278,118.941093
nyu4083,588015510351904883,20.13131764,0.84041735,3325,41,6,242,GALAXY,17.355797,5.835854E-3,16.402519,4.189367E-3,17.453136,0.01201,16.506065,9.796066E-3,118.070282,1038.99219,4.876562,14.258963,2.923978,4.895,28.088367,107.8,19.331055,27.316916,32.240475,12.709744,17.450047,19.124247,155.045227,165.411606,172.913956
nyu3971,587731187280576623,6.61870559,0.74028674,2662,40,5,327,GALAXY,17.089876,5.157311E-3,16.230013,3.930927E-3,17.188824,0.010209,16.347221,0.010107,1077.41748,229.806107,6.281543,19.410694,3.090116,4.725,28.29447755,161.7,24.795185,32.325523,36.725163,16.242704,19.688461,21.890388,43.020943,43.892952,39.650806
nyu3926,587731187280183302,5.71800312,0.76560446,2662,40,5,321,GALAXY,17.637934,6.954852E-3,16.743477,5.065857E-3,17.769545,0.075862,16.893818,0.07468,1307.52478,208.357773,5.486533,15.420513,2.810611,4.725,28.2944772,107.8,20.084435,26.03019,24.57403,11.03875,13.602399,14.865072,134.465302,134.193939,140.354248
nyu3924,587731187280183299,5.70842755,0.77104964,2662,40,5,321,GALAXY,16.407558,3.823905E-3,15.494712,2.954394E-3,16.444681,7.111001E-3,15.554191,5.597718E-3,1357.01819,121.308884,8.178776,27.099075,3.313341,4.725,28.2944772,107.8,33.016125,40.702831,49.631428,25.654482,32.681805,35.402927,148.743027,142.570297,143.711975
nyu3896,588015510344630422,3.53869628,0.84531388,3325,41,6,131,GALAXY,18.012051,9.460698E-3,17.103031,6.698016E-3,18.025156,0.017998,17.159317,0.01248,160.417542,1275.99988,5.699293,15.672989,2.749989,4.895,28.08837079,107.8,15.423434,18.887186,20.301016,14.548087,16.956486,17.128744,139.977692,138.274017,134.113586
nyu38789,588015509830762517,55.98972492,0.43780893,3325,41,5,482,GALAXY,16.066427,3.424416E-3,15.144979,2.679311E-3,16.144629,0.01582,15.22921,0.016928,276.904266,361.805878,6.998132,23.09482,3.300141,4.725,28.11732577,53.9,37.226433,46.750042,51.320766,23.077927,31.731739,35.641953,98.454552,99.213669,104.722618
nyu3873,588015510342992037,359.72513283,0.84571642,3325,41,6,106,GALAXY,17.258953,7.045544E-3,16.346478,4.410288E-3,17.3374,0.065175,16.46513,0.054451,164.196564,632.795288,5.701073,18.084703,3.172158,4.895,28.08837128,107.8,36.638065,42.806065,41.602783,9.424324,10.075644,12.613327,77.563492,78.853096,79.129128
nyu38480,588015509829255322,52.52617999,0.61599819,3325,41,5,459,GALAXY,16.616293,3.989246E-3,15.633973,3.000789E-3,16.685965,8.531815E-3,15.708785,7.327821E-3,1896.14441,180.798538,4.749075,14.877887,3.132797,4.725,28.11732754,53.9,24.124454,30.014631,32.661354,17.68318,21.985859,26.827265,33.211655,33.837502,40.15815
nyu38208,588015509828075667,49.94589792,0.58456672,3325,41,5,441,GALAXY,14.544189,2.115686E-3,13.669751,1.858086E-3,14.524022,0.032359,13.628579,0.022725,1611.11243,1223.62354,14.634653,48.841061,3.337357,4.725,28.11732888,53.9,65.337349,80.990875,84.559425,51.886318,59.44519,65.447563,98.618263,103.28672,100.219276
nyu38197,588015509828075743,49.86371153,0.52944006,3325,41,5,441,GALAXY,16.975349,5.531871E-3,16.082476,3.997014E-3,17.10574,0.027856,16.266724,0.015525,1110.13,476.684967,7.638983,21.406244,2.802237,4.725,28.11732888,53.9,35.576202,37.190163,43.416302,13.667583,17.430355,18.785383,137.163208,135.275269,129.480042
nyu37928,588015509826830411,47.1101676,0.55509763,3325,41,5,422,GALAXY,15.683048,4.6031E-3,14.809894,4.469757E-3,15.805759,0.015035,14.936613,0.01361,1343.40479,1305.03809,7.850475,24.384544,3.106123,4.725,28.11733014,53.9,42.900982,50.794235,53.986984,23.643274,28.175091,33.652126,104.626778,103.584473,106.921982
nyu37924,588015509826895891,47.14296639,0.55092078,3325,41,5,423,GALAXY,16.02076,3.284889E-3,15.088476,2.577567E-3,16.100992,8.325942E-3,15.188295,7.333706E-3,1305.43286,242.236435,6.847921,22.138195,3.232834,4.725,28.11733013,53.9,31.151125,39.545025,44.410271,27.224871,32.472527,39.322845,99.395294,90.255959,75.729752
nyu37779,588015509826306140,45.89662529,0.6103312,3325,41,5,414,GALAXY,16.676075,4.018113E-3,15.826916,3.186093E-3,16.772905,7.64301E-3,15.928085,7.649237E-3,1845.37146,1160.99426,3.908578,11.313262,2.89447,4.725,28.11733066,53.9,28.429441,37.460052,40.574295,12.408496,16.102716,18.079136,125.106209,130.853134,131.345993
nyu37718,588015509826044072,45.27829597,0.50239918,3325,41,5,410,GALAXY,17.464926,7.604077E-3,16.506632,4.426688E-3,17.650572,0.0157,16.683081,0.016649,864.466736,984.343323,3.966564,11.35671,2.863111,4.725,28.11733093,53.9,19.044985,26.897831,-9999,9.1121,10.398109,-9999,96.862854,96.387581,-9999
nyu37643,588015509825716347,44.52578161,0.43681485,3325,41,5,405,GALAXY,18.889166,0.022334,17.853247,0.013172,19.149242,0.723534,18.054161,0.55875,268.430725,948.769043,6.878964,19.515915,2.837043,4.725,28.11733125,53.9,9.928325,16.718449,20.694805,7.076592,13.619826,17.455002,130.396454,121.403374,88.959221
nyu37642,588015509825716346,44.52461313,0.43628629,3325,41,5,405,GALAXY,17.212603,5.379523E-3,16.255754,3.821152E-3,17.300701,0.012433,16.400862,0.011247,263.627319,938.148804,4.804707,13.864611,2.885631,4.725,28.11733125,53.9,18.281235,23.643967,27.715784,16.851007,21.676552,23.2356,87.108948,84.622932,88.709641
nyu37600,588015509825454283,43.93296377,0.54223001,3325,41,5,401,GALAXY,17.70689,6.12003E-3,16.805742,4.471283E-3,17.774164,0.014916,16.893381,0.010787,1226.35461,1003.77393,3.15811,8.938815,2.830432,4.725,28.11733162,53.9,20.371584,24.059799,24.708494,9.129155,11.08703,15.29616,93.012749,90.726189,92.808701
nyu37593,588015509825454262,43.87486974,0.52986694,3325,41,5,401,GALAXY,18.641647,0.013365,17.609726,9.264507E-3,18.630783,0.028415,17.62397,0.025506,1113.97876,475.717285,4.833307,13.223332,2.735877,4.725,28.11733162,53.9,24.568571,31.81826,32.023563,6.619816,8.147656,9.393097,37.209087,38.682232,39.382977
nyu37539,588015509825126487,43.09787381,0.53365349,3325,41,5,396,GALAXY,17.581747,8.809809E-3,16.599436,5.637921E-3,17.76984,0.043868,16.869547,0.022182,1148.75159,217.556427,7.972893,22.907066,2.873118,4.725,28.11733189,53.9,31.735023,34.602509,33.193256,9.980976,12.649087,16.597916,139.342743,138.06842,144.349213
nyu37453,588015509824471215,41.73251474,0.55959749,3325,41,5,386,GALAXY,17.941641,7.113903E-3,17.043274,5.042481E-3,17.978497,0.010182,17.122343,6.768002E-3,1384.10278,1415.87134,3.471148,9.521784,2.743122,4.725,28.11733265,53.9,13.627176,15.36954,18.299429,11.473526,13.673389,16.371378,109.950996,123.538673,97.581841
nyu37420,588015509824209028,41.09680019,0.59497299,3325,41,5,382,GALAXY,17.408319,5.506525E-3,16.478395,4.016174E-3,17.460272,0.023119,16.571497,0.019678,1705.46448,1080.86536,3.836888,11.64074,3.033902,4.725,28.1173329,53.9,21.623161,26.085701,30.045467,13.039057,16.357721,18.379473,5.197969,178.847168,3.27624
nyu37355,588015509823684718,39.81257576,0.47847994,3325,41,5,374,GALAXY,15.861719,3.158064E-3,14.968194,2.530462E-3,16.005856,0.011465,15.127307,0.01146,647.343323,295.851868,6.449565,19.790783,3.068546,4.725,28.1173332,53.9,42.640923,64.480049,70.74736,19.689877,22.509544,26.198019,32.890236,34.717236,34.5508
nyu37350,588015509823619089,39.7141727,0.50868537,3325,41,5,373,GALAXY,15.462299,2.920839E-3,14.549825,2.309856E-3,15.611673,8.318075E-3,14.657361,0.016196,921.905884,762.186646,11.84467,36.009762,3.040166,4.725,28.11733326,53.9,48.86694,59.844395,65.472473,28.685843,37.680225,43.235069,97.635658,97.977646,97.806091
nyu37313,588015509823160354,38.66750452,0.52726255,3325,41,5,366,GALAXY,16.076338,3.702255E-3,15.260056,2.784653E-3,16.149139,4.410736E-3,15.334692,2.952842E-3,1091.03357,774.546204,7.267367,21.426622,2.948334,4.725,28.11733357,53.9,27.698097,32.029186,35.38187,24.951656,29.060162,31.287937,81.193153,70.76812,90.114922
nyu36958,588015509820342403,32.20956691,0.5689066,3325,41,5,323,GALAXY,17.666195,8.975741E-3,16.794973,5.732268E-3,17.509424,0.037901,16.712431,0.033658,1470.36902,593.329834,8.439928,22.637888,2.682237,4.725,28.11733595,53.9,28.309246,34.757233,37.522408,13.458106,14.742513,17.506556,123.298157,125.988853,123.866867
nyu36955,588015509820342388,32.18887297,0.57489617,3325,41,5,323,GALAXY,17.489147,6.088757E-3,16.625084,4.514594E-3,17.560999,8.25842E-3,16.706347,5.503133E-3,1524.79822,405.203094,4.0314,11.097393,2.75274,4.725,28.11733595,53.9,14.573391,18.27511,-9999,13.577873,15.303642,-9999,174.361908,137.650726,-9999
nyu36948,588015509820276955,32.11294663,0.52377414,3325,41,5,322,GALAXY,16.499298,4.28297E-3,15.634192,3.226801E-3,16.693916,0.011726,15.807278,8.810888E-3,1060.07471,1076.26233,7.117488,20.640238,2.899933,4.725,28.11733606,53.9,33.493393,36.93071,38.226379,14.611277,18.627728,21.14089,132.520142,132.793289,131.111038
nyu36942,588015509820276874,32.15000173,0.45836306,3325,41,5,322,GALAXY,15.360757,2.77008E-3,14.551694,2.26754E-3,15.501944,7.196724E-3,14.66542,6.779623E-3,465.516785,1413.28723,10.435735,34.873287,3.341719,4.725,28.11733606,53.9,-9999,57.007393,57.947784,-9999,45.754784,44.199402,-9999,5.807511,178.68338
nyu36933,588015509820145790,31.81670137,0.57302136,3325,41,5,320,GALAXY,15.769154,3.140284E-3,14.898671,2.498587E-3,15.903275,8.91347E-3,15.046923,8.34361E-3,1507.5675,1105.21753,8.757386,26.70517,3.049445,4.725,28.1173362,53.9,40.985733,48.438503,53.984913,25.978842,32.048592,36.402328,132.496414,134.642899,138.68956
nyu36909,588015509820014672,31.41001739,0.55173745,3325,41,5,318,GALAXY,18.42317,0.012256,17.509317,7.684174E-3,18.534712,0.025139,17.625063,0.022098,1314.02344,130.272354,4.746388,14.296737,3.01213,4.725,28.11733633,53.9,16.464479,20.711588,22.834661,7.75723,10.755015,12.287283,0.262827,2.44456,1.380048
nyu36881,588015509819818126,31.03499444,0.51540468,3325,41,5,315,GALAXY,17.862097,9.356834E-3,16.966616,6.250408E-3,17.964561,0.024834,17.133375,0.01516,983.548523,804.230469,6.774317,20.675718,3.052074,4.725,28.11733652,53.9,20.058342,26.057095,28.534382,11.471911,14.430722,15.847371,72.919098,73.842674,73.618767
nyu36783,588015509819228282,29.71788955,0.56829529,3325,41,5,306,GALAXY,15.31537,2.610546E-3,14.479857,2.210403E-3,15.361717,8.017047E-3,14.520491,8.59543E-3,1464.36096,1079.979,9.07129,31.160622,3.435082,4.725,28.1173369,53.9,55.485519,60.966026,64.2286,28.057302,31.924784,35.76453,49.90572,46.818409,51.869965
nyu36757,588015509818966050,29.01872968,0.52356339,3325,41,5,302,GALAXY,17.227493,5.355271E-3,16.429628,4.08584E-3,17.356016,8.830543E-3,16.557522,7.259612E-3,1057.77563,168.335846,4.187213,12.753157,3.045738,4.725,28.11733707,53.9,19.795969,24.176828,25.214249,15.344812,18.814821,22.866096,92.491348,89.631783,140.044479
nyu36750,588015509818835068,28.82773309,0.48675606,3325,41,5,300,GALAXY,15.654065,2.916486E-3,14.813292,2.422299E-3,15.681246,4.403916E-3,14.861235,3.535546E-3,723.267883,1154.25879,8.400226,29.044092,3.457537,4.725,28.11733711,53.9,38.728996,46.67934,52.407532,35.671062,42.401718,48.316956,162.859253,151.327194,142.974228
nyu36618,588015509817262117,25.19503639,0.47828936,3325,41,5,276,GALAXY,16.666828,4.468262E-3,15.739258,3.305427E-3,16.799953,0.018237,15.864249,0.020775,645.753418,795.783752,6.306305,19.431087,3.081216,4.725,28.11733822,107.8,24.76894,34.810429,34.402584,20.36557,25.58305,28.226343,38.881432,34.210236,37.598152
nyu36528,588015509816279128,22.97057362,0.53616215,3325,41,5,261,GALAXY,17.870771,7.141154E-3,16.927855,4.97084E-3,17.980238,0.03262,17.052044,0.029152,1170.99548,989.34845,3.489945,10.377861,2.973646,4.725,28.11733906,107.8,19.353743,23.560465,23.638083,7.021226,8.439876,9.028968,31.839844,31.479227,36.87196
nyu36521,588015509816279241,22.90177233,0.56538537,3325,41,5,261,GALAXY,18.599014,0.012185,17.724846,8.31221E-3,18.57593,0.026055,17.745438,0.017879,1436.52209,363.842438,4.82603,13.926785,2.885764,4.725,28.11733906,107.8,12.57617,16.468204,21.38236,11.087395,12.877629,13.555177,152.291458,128.555878,126.011948
nyu36518,588015509816279204,22.89045715,0.55985555,3325,41,5,261,GALAXY,18.086498,8.567942E-3,17.012907,5.371482E-3,18.264513,0.024924,17.199947,0.011332,1386.25024,261.009277,3.371104,9.626264,2.855522,4.725,28.11733906,107.8,15.333408,24.919878,27.084257,11.765108,17.200232,17.835451,57.132839,35.350941,50.139229
nyu36517,588015509816279203,22.88715979,0.55597074,3325,41,5,261,GALAXY,15.661032,3.370788E-3,14.662093,2.472993E-3,15.685859,0.013126,14.695544,0.013105,1350.93921,231.050797,17.140188,53.463436,3.119186,4.725,28.11733906,107.8,53.330757,68.886368,79.312782,37.289398,50.662426,54.157257,40.912983,32.592541,32.883823
nyu36512,588015509816213724,22.86826666,0.53497521,3325,41,5,260,GALAXY,17.115662,4.998378E-3,16.151299,3.671819E-3,17.167547,9.499991E-3,16.214115,8.637604E-3,1160.04504,1420.40942,4.237939,13.655921,3.222302,4.725,28.11733914,107.8,18.999552,25.516809,28.131998,16.824646,22.383898,24.701273,106.373497,62.683445,32.638309
nyu36508,588015509816213673,22.80364578,0.54990844,3325,41,5,260,GALAXY,17.97809,8.904642E-3,17.091999,6.181346E-3,18.181665,0.017572,17.304384,0.012873,1295.75671,832.945984,4.668731,12.734159,2.727542,4.725,28.11733914,107.8,17.197012,20.397848,21.027901,8.635532,11.070204,12.125344,144.449478,146.043152,143.509186
nyu36499,588015509816213634,22.75467774,0.49466872,3325,41,5,260,GALAXY,18.283817,0.010858,17.361137,7.035257E-3,18.306671,0.017907,17.403891,0.013078,793.609558,388.008209,4.050025,12.62273,3.116705,4.725,28.11733914,107.8,13.351047,16.493954,20.826746,11.961925,14.068661,14.98676,80.622093,90.24453,88.851105
nyu36496,588015509816148092,22.65178624,0.45857722,3325,41,5,259,GALAXY,16.239002,3.850918E-3,15.297949,2.899158E-3,16.390471,0.011717,15.447872,0.011724,465.507355,813.706543,7.59626,22.653713,2.982219,4.725,28.1173392,107.8,31.660181,37.051029,42.60762,20.173668,26.332321,30.591698,1.314745,5.052012,170.650604
nyu36447,588015509815623822,21.4599282,0.52231643,3325,41,5,251,GALAXY,17.126394,5.946242E-3,16.207754,4.133147E-3,16.976246,0.019654,16.055038,0.016661,1044.57214,866.985779,10.399261,37.032635,3.561083,4.725,28.11733964,107.8,29.731533,42.951313,50.843014,18.694866,26.994896,31.612473,177.186569,172.981491,0.540075
nyu36438,588015509815623799,21.41679714,0.5419226,3325,41,5,251,GALAXY,17.201925,5.732802E-3,16.280037,4.018686E-3,17.199301,0.010437,16.280979,7.016056E-3,1222.76917,474.833984,6.178348,19.731491,3.193652,4.725,28.11733964,107.8,21.724464,27.074909,28.741558,18.658642,23.326246,24.157988,148.289307,156.716003,154.826706
nyu36437,588015509815623754,21.37523775,0.61921264,3325,41,5,251,GALAXY,17.540003,8.138948E-3,16.63607,6.863473E-3,17.643726,0.01451,16.73275,0.01347,1925.03809,96.733231,4.496171,13.863228,3.083341,4.725,28.11733964,107.8,18.567497,24.235886,24.448099,12.952297,17.776474,19.054176,39.021717,43.878662,36.561512
nyu36401,588015509815230551,20.48645921,0.51056128,3325,41,5,245,GALAXY,17.381918,5.98553E-3,16.445429,4.224175E-3,17.48296,9.843587E-3,16.557278,6.364126E-3,937.142273,183.863144,4.801418,13.216615,2.752648,4.725,28.11734008,107.8,17.684601,21.611683,24.306149,12.725894,14.674139,16.306101,129.079468,129.954803,131.360672
nyu36375,588015509814902897,19.76682693,0.44177593,3325,41,5,240,GALAXY,16.265108,4.322351E-3,15.266222,3.009648E-3,16.348917,0.015022,15.288102,0.01703,311.684998,447.298096,13.306534,41.786362,3.140289,4.725,28.11734038,107.8,39.15498,56.106247,59.755539,26.616457,35.768448,39.903435,104.769386,99.544548,94.988075
nyu36366,588015509814706317,19.36937879,0.56879365,3325,41,5,237,GALAXY,17.666727,6.769751E-3,16.83095,4.915278E-3,17.750498,0.018524,16.896666,0.016529,1466.04187,917.093872,3.579845,11.159937,3.117436,4.725,28.11734055,107.8,20.864136,23.478188,26.243303,10.044146,13.002825,13.092703,18.991692,10.688582,14.013599
nyu36358,588015509814640751,19.20027712,0.54089161,3325,41,5,236,GALAXY,16.573299,4.505205E-3,15.766931,3.462431E-3,16.734579,6.952222E-3,15.939715,5.189451E-3,1212.53455,741.049683,7.09697,19.438925,2.739046,4.725,28.11734058,107.8,23.334263,25.445509,30.456404,20.91717,24.86405,25.83642,42.14444,103.119186,160.071274
nyu36324,588015509814444272,18.78056576,0.46577695,3325,41,5,233,GALAXY,15.805741,3.435806E-3,14.952766,2.698725E-3,16.035316,7.723383E-3,15.163711,8.692283E-3,529.758545,1009.19208,9.106852,25.813148,2.834476,4.725,28.11734075,107.8,39.712673,46.760834,52.414928,20.845819,25.587818,29.155773,14.952301,14.341565,9.977941
nyu36323,588015509814444092,18.78637118,0.575974,3325,41,5,233,GALAXY,15.820663,3.096916E-3,14.931168,2.526388E-3,15.995676,0.01385,15.112233,0.031495,1531.375,1061.58618,5.26004,15.60218,2.966171,4.725,28.11734075,107.8,36.050972,49.310669,58.050819,19.199701,24.888338,28.898476,81.413765,79.546204,80.044861
nyu36310,588015509814444196,18.72590066,0.50738836,3325,41,5,233,GALAXY,16.075333,3.419332E-3,15.210671,2.756121E-3,16.190557,0.015262,15.334403,0.014016,907.966675,512.215454,6.102147,18.558529,3.041312,4.725,28.11734075,107.8,32.671703,40.686478,46.424522,21.364153,27.738401,31.615845,134.331345,138.373688,137.476059
nyu36308,588015509814444177,18.69558888,0.52467399,3325,41,5,233,GALAXY,15.82968,3.209817E-3,14.952918,2.587789E-3,16.059467,0.042542,15.172019,0.04117,1065.07971,236.654526,5.816227,17.960882,3.088064,4.725,28.11734075,107.8,49.510818,56.709007,64.209251,15.535232,19.781248,23.136808,165.531586,167.641098,165.334702
nyu36302,588015509814378693,18.62598948,0.52890984,3325,41,5,232,GALAXY,17.045343,5.848133E-3,16.21566,4.359837E-3,17.239853,9.626726E-3,16.40151,8.43315E-3,1103.50098,964.998047,5.913837,16.443457,2.780505,4.725,28.11734083,107.8,23.212301,27.992655,30.015305,13.08849,16.837261,17.899115,118.188553,116.493652,114.731903
nyu36297,588015509814378584,18.63436545,0.53204933,3325,41,5,232,GALAXY,16.744871,4.315436E-3,15.922935,3.421174E-3,16.83749,0.050522,16.026764,0.047203,1132.03918,1041.11926,4.567453,14.441832,3.161901,4.725,28.11734083,107.8,31.99987,34.621658,37.241379,12.087385,15.128107,17.452114,97.4244,99.606094,101.675034
nyu36288,588015509814378661,18.6001128,0.47001616,3325,41,5,232,GALAXY,17.205654,7.534712E-3,16.387144,6.344747E-3,17.353142,0.013336,16.560448,9.286711E-3,568.168579,729.984253,7.483999,21.288847,2.844582,4.725,28.11734083,107.8,25.674253,30.075737,34.759296,15.098159,18.854347,19.953302,169.1866,166.685715,162.616486
nyu36282,588015509814313026,18.38771484,0.49666858,3325,41,5,231,GALAXY,16.407024,4.77276E-3,15.469957,3.424032E-3,16.540068,0.043845,15.653852,0.032446,810.408386,160.309402,11.337132,35.390282,3.121626,4.725,28.11734089,107.8,65.342766,62.701004,63.481857,12.091583,15.238748,17.285385,86.502914,86.913269,85.499397
nyu36237,588015509813919904,17.62606326,0.53628857,3325,41,5,225,GALAXY,16.727222,4.510528E-3,15.833076,3.351828E-3,16.791159,0.010022,15.918356,8.380175E-3,1170.23254,1402.77356,5.799943,19.105919,3.294156,4.725,28.11734125,107.8,25.008539,32.787647,37.953846,23.875029,29.461227,33.155994,28.826958,44.998844,50.682457
nyu36115,588015509813329996,16.1430182,0.60503605,3325,41,5,216,GALAXY,16.804211,5.764798E-3,15.80254,4.850037E-3,16.769087,0.017027,15.831156,0.015392,1794.28259,170.316986,8.73659,23.157471,2.65063,4.725,28.11734181,107.8,46.073288,62.781403,71.981712,13.443528,15.751873,17.128691,11.644064,9.468644,12.956578
nyu36007,588015509812740253,14.8427566,0.48826641,3325,41,5,207,GALAXY,15.948104,3.552843E-3,15.030971,2.677104E-3,16.044989,6.899199E-3,15.126819,5.810417E-3,733.123413,599.786499,10.322371,32.064571,3.106318,4.725,28.11734209,107.8,38.005875,47.083393,53.025043,28.640305,37.759392,43.286869,91.378532,94.748787,101.088318
nyu35994,588015509812674718,14.70115863,0.45544925,3325,41,5,206,GALAXY,16.992519,5.178424E-3,16.071646,3.728272E-3,17.139162,0.014967,16.22226,0.013746,434.844604,673.676819,5.266749,15.589368,2.95996,4.725,28.11734209,107.8,26.166416,36.852558,38.270866,14.796551,18.659019,21.650818,15.108541,12.752777,11.668733
nyu35965,588015509812478089,14.25870417,0.47612126,3325,41,5,203,GALAXY,17.759857,7.975734E-3,16.903515,5.494068E-3,17.718834,0.020916,16.884516,9.846094E-3,622.674683,734.270874,5.643617,17.966524,3.183512,4.725,28.11734222,107.8,22.984289,28.216875,29.907169,13.906672,16.117678,16.401615,127.607948,130.768845,136.910049
nyu35785,588015509811298450,11.51096734,0.48322109,3325,41,5,185,GALAXY,17.33709,6.036329E-3,16.432241,4.269221E-3,17.298159,0.011045,16.427366,7.846165E-3,686.29718,254.743622,5.592138,18.084625,3.233938,4.725,28.11734286,107.8,19.688442,23.931879,27.314081,18.574327,23.505987,25.106749,130.728683,85.50325,21.928392
nyu35688,588015509810577544,9.88840919,0.59748322,3325,41,5,174,GALAXY,15.709573,3.331046E-3,14.759708,2.510979E-3,15.796097,7.24282E-3,14.87551,7.415025E-3,1724.4502,475.516785,12.024444,37.986702,3.159124,4.725,28.11734317,107.8,48.796116,57.810551,63.517605,30.177774,39.070885,43.2323,129.715469,128.451279,128.488663
nyu35579,588015509809659979,7.79849182,0.53144464,3325,41,5,160,GALAXY,17.885242,8.574281E-3,17.023172,7.382505E-3,17.879791,0.014639,17.018641,9.73387E-3,1124.54944,531.282166,4.78102,15.373283,3.215482,4.725,28.11734339,107.8,16.329184,20.098114,21.815069,13.591422,16.899744,17.191628,61.026302,57.393414,72.681366
nyu35499,588015509809135762,6.637674,0.50389205,3325,41,5,152,GALAXY,16.410698,4.090295E-3,15.486271,3.025321E-3,16.540058,0.01522,15.609074,0.015382,873.976379,866.407959,6.818437,21.054756,3.087915,4.725,28.11734366,107.8,30.260878,38.649349,41.293919,18.822355,24.860622,27.256168,59.770447,66.413315,68.138031
nyu35477,588015509809070220,6.4625785,0.52451623,3325,41,5,151,GALAXY,16.462315,4.282897E-3,15.647008,3.288052E-3,16.566519,0.019869,15.766015,0.017475,1061.46497,635.556396,7.504169,22.542875,3.004047,4.725,28.11734367,107.8,34.180241,38.641655,37.112503,17.572838,21.967878,29.269863,121.178558,126.669197,127.281731
nyu35258,588015509807235233,2.33144875,0.59924006,3325,41,5,123,GALAXY,16.458643,4.827269E-3,15.546912,3.554054E-3,16.623753,0.094377,15.784822,0.079938,1740.76746,1188.17175,9.795588,31.335684,3.198959,4.725,28.11734435,107.8,66.65995,68.923592,71.912323,10.919199,13.750385,15.088433,37.831047,37.143272,37.735603
nyu35209,588015509806907587,1.57226988,0.46137612,3325,41,5,118,GALAXY,16.903654,6.049341E-3,15.978463,5.791748E-3,17.004032,0.020214,16.108686,0.018573,488.0354,1092.64783,4.372748,13.590098,3.107908,4.725,28.11734443,107.8,27.481495,32.821316,36.681835,13.973922,17.785406,22.406557,39.362797,43.537796,44.889362
nyu35201,588015509806907539,1.47423389,0.45362478,3325,41,5,118,GALAXY,16.56665,4.725649E-3,15.620738,3.351136E-3,16.680485,0.01358,15.771482,0.013533,417.622925,201.402206,6.397455,19.283123,3.014187,4.725,28.11734443,107.8,32.989487,36.360146,40.05975,15.117214,17.743967,20.31986,166.136978,163.952408,166.79863
nyu35167,588015509806776432,1.16848956,0.58401758,3325,41,5,116,GALAXY,16.733543,5.988689E-3,15.72694,5.172263E-3,16.811422,9.937929E-3,15.836901,6.489759E-3,1602.76099,143.360397,8.245769,26.124857,3.168274,4.725,28.11734443,107.8,25.072105,34.266094,37.508232,23.38426,31.014353,36.380539,100.535553,135.868408,91.046883
nyu35112,588015509806514377,0.70367334,0.47615249,3325,41,5,112,GALAXY,17.234716,6.153374E-3,16.309053,4.228354E-3,17.179153,0.010669,16.266474,6.892078E-3,622.125488,1362.13306,6.133721,19.561888,3.189236,4.725,28.11734451,107.8,22.284685,27.083223,32.899178,17.919407,21.865776,23.443275,145.931885,156.764069,156.954025
nyu35111,588015509806514365,0.67952941,0.57198687,3325,41,5,112,GALAXY,17.127131,5.563707E-3,16.177963,3.903159E-3,17.274359,0.010337,16.331526,9.108116E-3,1493.18945,1142.29895,5.111809,14.517854,2.840062,4.725,28.11734451,107.8,21.161781,27.387005,31.842766,13.497519,18.026627,21.41136,170.197617,3.30659,5.808682
nyu35110,588015509806514336,0.65150937,0.49571512,3325,41,5,112,GALAXY,18.049498,8.185683E-3,17.108294,5.567428E-3,18.116203,0.025544,17.186388,0.018736,799.975464,887.812317,3.637876,11.044312,3.035923,4.725,28.11734451,107.8,16.280487,23.811279,24.931484,10.914274,13.039557,15.578822,68.627289,65.987701,72.847397
nyu35099,588015509806514280,0.60273424,0.53515557,3325,41,5,112,GALAXY,18.449287,0.010813,17.535755,8.926481E-3,18.478302,0.014924,17.564581,0.012243,1158.5105,444.230927,2.483429,7.375017,2.969691,4.725,28.11734451,107.8,11.477842,17.282381,25.311157,10.092389,15.296177,15.601153,63.580025,50.326794,77.802505
nyu35087,588015509806448799,0.4565288,0.56695276,3325,41,5,111,GALAXY,16.183369,3.702825E-3,15.26531,2.817707E-3,16.226284,8.740292E-3,15.309079,7.52997E-3,1447.59998,475.935516,7.860566,26.685856,3.394902,4.725,28.11734448,107.8,34.498245,44.982681,52.962879,26.771875,35.958218,41.893726,111.403976,123.732483,110.88121
nyu35,588015508192952440,353.91009568,-0.83684503,3325,41,2,67,GALAXY,16.81885,4.625921E-3,16.048199,3.63369E-3,16.832682,0.015076,16.042681,0.015264,131.436005,848.170898,5.042802,17.003601,3.371855,4.6,28.08875,107.8,24.886213,29.478571,32.790302,18.779583,21.423063,22.218594,7.868121,1.225838,9.74916
nyu34991,588015509805793362,359.03259631,0.54948405,3325,41,5,101,GALAXY,14.880982,2.706914E-3,13.950534,2.163105E-3,14.969534,6.804625E-3,14.16679,5.033658E-3,1288.67236,1141.40369,19.035175,48.738731,2.560456,4.725,28.11734453,107.8,92.276314,118.935944,121.711563,35.282051,38.83749,45.046509,105.262016,104.057503,106.737793
nyu34978,588015509805793302,358.96659756,0.55790873,3325,41,5,101,GALAXY,15.022724,2.464708E-3,14.206977,2.131949E-3,14.955745,6.090467E-3,14.154026,5.639665E-3,1365.33093,541.405884,12.752946,45.928326,3.60139,4.725,28.11734453,107.8,59.25861,74.240402,81.110321,48.619602,59.920666,67.468544,23.061722,29.658846,31.759394
nyu34820,588015509804482600,356.00857551,0.51662169,3325,41,5,81,GALAXY,14.037923,2.08682E-3,13.080066,1.811714E-3,13.853916,0.018645,13.02314,7.981568E-3,990.557007,870.904541,29.51816,87.408417,2.961174,4.725,28.11734455,107.8,149.181259,156.571671,151.200775,47.456528,60.206436,68.692131,35.998402,30.753151,32.115902
nyu34775,588015509803958307,354.78601567,0.46346431,3325,41,5,73,GALAXY,15.029575,2.551247E-3,14.225617,2.163717E-3,15.107599,6.676285E-3,14.3112,5.292881E-3,507.364471,645.102051,12.288596,38.495457,3.132616,4.725,28.11734466,107.8,61.417992,70.699059,75.275414,30.91894,35.344975,39.305809,178.795486,176.788116,179.017944
nyu34736,588015509803565064,353.84998268,0.53444296,3325,41,5,67,GALAXY,18.036324,8.77968E-3,17.177029,6.019503E-3,18.061184,0.35694,17.183653,0.266982,1152.46387,301.611816,4.377736,13.053535,2.981801,4.725,28.11734478,107.8,15.501099,19.539537,22.205854,10.096451,13.026446,16.708462,106.612823,101.184052,85.111992
nyu34724,588015509803434064,353.61904415,0.57195836,3325,41,5,65,GALAXY,16.234171,3.927164E-3,15.289622,2.889909E-3,16.258673,7.545491E-3,15.318764,5.612574E-3,1493.45215,923.986511,9.123457,30.496153,3.342609,4.725,28.11734475,107.8,37.068359,46.768478,53.709927,26.806515,33.133873,35.734653,91.020927,93.484367,94.131927
nyu34632,588015509802319996,350.98782718,0.59077742,3325,41,5,48,GALAXY,16.637022,4.586524E-3,15.680094,3.271567E-3,16.744539,0.010617,15.809406,8.83499E-3,1664.56396,140.710632,6.567129,20.440996,3.112623,4.725,28.1173446,107.8,28.723957,36.571484,40.282097,20.352083,25.668655,28.769241,0.999495,4.018363,0.656413
nyu34625,588015509802254475,350.89567865,0.50193122,3325,41,5,47,GALAXY,17.505772,7.000689E-3,16.574644,4.733975E-3,17.605417,0.012744,16.693388,8.338558E-3,857.033325,664.545044,5.261415,15.287066,2.905505,4.725,28.11734464,107.8,17.461803,21.141182,25.993277,15.399967,20.350704,22.44759,74.022957,104.6483,163.62767
nyu3410,588015509824471090,41.69989132,0.42157439,3325,41,5,386,GALAXY,14.843557,2.396194E-3,14.008242,2.022333E-3,14.931329,4.21112E-3,14.130351,4.064726E-3,129.609604,1119.76575,15.63987,47.981026,3.067866,4.725,28.11733265,53.9,58.156498,69.584503,75.122734,49.910511,60.610252,66.839798,62.18071,63.0448,48.863285
nyu3319,588015509814444216,18.73995889,0.43080285,3325,41,5,233,GALAXY,14.447282,2.286707E-3,13.564619,1.901855E-3,14.627748,3.288585E-3,13.711042,4.726303E-3,211.91507,640.208679,21.218428,64.476349,3.038696,4.725,28.11734075,107.8,72.876259,93.518806,102.327606,56.901264,71.179138,78.105988,147.372833,151.599548,147.360596
nyu3318,588015509814313038,18.40657252,0.42373562,3325,41,5,231,GALAXY,17.622501,0.011631,16.752575,6.788491E-3,17.518061,0.024385,16.736883,0.013089,147.591949,331.921967,9.426077,24.382866,2.586746,4.725,28.11734089,107.8,41.28339,43.901455,48.485306,8.141615,9.596245,12.255289,77.168526,75.934616,77.353821
nyu3297,588015509813067854,15.59342493,0.42799483,3325,41,5,212,GALAXY,17.907509,8.098233E-3,16.920923,5.299966E-3,17.969187,0.027791,17.008896,0.025541,185.282867,618.849792,4.394754,12.786575,2.909508,4.725,28.11734199,107.8,14.765769,19.128336,23.200893,13.264318,16.374128,19.2957,65.555679,85.57814,98.412636
nyu3291,588015509812674645,14.75498179,0.42525341,3325,41,5,206,GALAXY,15.934502,3.256078E-3,15.014756,2.578113E-3,16.018562,0.01369,15.086301,0.01206,160.47496,1163.06494,6.490177,22.058376,3.398732,4.725,28.11734209,107.8,38.285835,48.712349,53.8806,25.968233,33.396469,39.294277,138.47908,133.836319,129.592957
nyu3289,588015509812543622,14.47195359,0.43041661,3325,41,5,204,GALAXY,16.400698,4.828028E-3,15.490957,3.406805E-3,16.586048,9.705259E-3,15.666414,6.632446E-3,207.304169,1312.01709,10.952708,32.530556,2.970093,4.725,28.1173422,107.8,32.476048,41.747124,46.046005,24.202345,31.802124,35.455177,148.984177,148.209625,150.149231
nyu3288,588015509812543576,14.3790947,0.42457777,3325,41,5,204,GALAXY,17.961891,7.643781E-3,17.066837,5.4004E-3,17.932713,0.084151,17.078466,0.157922,154.2742,467.829224,3.838095,12.394666,3.22938,4.725,28.1173422,107.8,15.0776,20.280931,23.060513,13.348777,15.83344,13.873763,158.463928,160.32576,146.926285
nyu3278,588015509812215922,13.69390254,0.42716601,3325,41,5,199,GALAXY,16.825348,4.888823E-3,15.938775,3.71242E-3,16.949041,0.025123,16.070669,0.026741,177.694061,1044.32568,4.801609,14.760177,3.074007,4.725,28.11734234,107.8,27.48251,33.932518,34.343933,10.982875,13.587571,15.506503,45.452301,42.723011,41.240444
nyu3203,588015509806579799,0.71552548,0.42934438,3325,41,5,113,GALAXY,17.81562,0.024471,16.880096,5.017451E-3,17.885439,0.028651,16.963282,0.025369,196.758896,108.999947,3.905136,12.007479,3.074791,4.725,28.11734452,107.8,22.694365,24.74198,25.091669,8.008653,10.047379,12.400828,90.975754,88.46183,83.643707
nyu3194,588015509805924405,359.22238118,0.42545269,3325,41,5,103,GALAXY,17.636616,7.095781E-3,16.722435,4.926283E-3,17.62295,0.050058,16.729483,0.052088,161.433594,145.07402,4.80483,16.054222,3.341268,4.725,28.11734453,107.8,18.050167,22.392466,23.248453,16.882578,20.006485,22.531788,33.065006,37.273209,74.514923
nyu3190,588015509805072557,357.41029848,0.42723464,3325,41,5,90,GALAXY,18.219212,0.010024,17.377453,6.847771E-3,18.267294,0.017095,17.420544,0.011729,177.744751,1364.91699,4.085264,11.681861,2.859512,4.725,28.11734455,107.8,12.189428,15.112814,17.851189,10.921433,14.279228,16.603754,161.338028,48.326172,118.144676
nyu3189,588015509805072495,357.40145214,0.43154339,3325,41,5,90,GALAXY,17.612715,8.417316E-3,16.848259,6.472958E-3,17.83156,0.229354,17.079977,0.682858,216.888474,1284.48181,5.910028,17.029934,2.881532,4.725,28.11734455,107.8,21.564865,25.728407,28.64826,10.268633,12.933253,14.028756,74.318481,77.146805,78.395218
nyu3187,588015509805072534,357.33466207,0.42219829,3325,41,5,90,GALAXY,17.772139,7.100885E-3,16.921375,5.108555E-3,17.829199,0.013848,16.970831,0.011731,131.976349,677.295166,3.897387,12.116683,3.108925,4.725,28.11734455,107.8,15.118929,18.51935,23.360662,13.721314,17.754883,20.139189,20.763243,28.349695,15.312968
nyu31125,588015509293957317,56.25239953,0.10213052,3325,41,4,483,GALAXY,16.661913,4.360571E-3,15.698839,3.260631E-3,16.778315,0.016474,15.834255,0.014126,1039.62683,1388.43481,6.324748,18.869879,2.983499,4.76,28.09138088,53.9,28.773035,34.969578,40.158276,17.277519,22.499027,27.341557,34.274014,39.277592,38.347931
nyu30968,588015509293170866,54.390306,0.14480057,3325,41,4,471,GALAXY,17.435625,7.102369E-3,16.54133,5.045445E-3,17.571123,0.026045,16.699905,0.02154,1427.11194,793.977112,6.850099,20.75914,3.030488,4.76,28.09138184,53.9,19.24585,25.291124,28.103462,17.144125,21.09482,23.051846,54.43565,50.598228,166.916077
nyu30617,588015509291663409,50.94313176,0.03053672,3325,41,4,448,GALAXY,15.428299,2.845929E-3,14.470398,2.333638E-3,15.480897,0.011618,14.559517,0.011219,389.106079,762.391663,12.084615,33.981712,2.811981,4.76,28.09138359,53.9,52.027679,56.691929,65.384293,25.987661,32.071758,28.912046,147.282837,147.969925,146.087463
nyu30578,588015509291597939,50.74164625,0.05413849,3325,41,4,447,GALAXY,16.549259,4.273992E-3,15.631571,3.293048E-3,16.474482,0.033023,15.606085,0.025079,603.59668,291.898987,10.027547,28.94434,2.886483,4.76,28.09138375,53.9,52.723515,55.643524,61.328331,13.474216,16.260267,17.363203,126.392311,126.075256,126.482101
nyu30297,588015509290418187,48.03801721,0.03136884,3325,41,4,429,GALAXY,15.967228,3.178098E-3,15.088217,2.664934E-3,16.156839,0.059441,15.270794,0.057344,396.605469,212.914917,5.319142,16.803886,3.159135,4.76,28.09138511,53.9,48.975067,62.139759,63.602203,15.046553,18.367779,21.192207,44.442421,44.339359,43.297588
nyu30167,588015509289828532,46.74466473,0.14258103,3325,41,4,420,GALAXY,16.498354,3.915955E-3,15.482838,2.981561E-3,16.61281,0.040595,15.616571,0.036644,1407.89417,704.63031,5.984991,19.384834,3.238908,4.76,28.0913857,53.9,33.786961,39.11668,45.215275,17.579487,25.479874,30.098291,72.183487,80.348434,82.783813
nyu30148,588015509289828517,46.71799225,0.13817847,3325,41,4,420,GALAXY,17.662849,6.228386E-3,16.700064,4.564519E-3,17.791822,0.057888,16.849152,0.053738,1367.90369,462.20105,3.737576,11.66724,3.121606,4.76,28.0913857,53.9,25.507761,28.702194,27.833414,7.932293,10.082398,11.158912,14.550687,13.073416,10.497535
nyu30143,588015509289762924,46.62734693,0.12026354,3325,41,4,419,GALAXY,17.358511,7.228835E-3,16.38769,6.823586E-3,17.408194,0.017155,16.461079,0.014299,1204.94751,999.275146,4.662629,15.250588,3.270813,4.76,28.0913858,53.9,21.737097,26.955151,28.327908,13.207489,17.639116,18.952065,13.153255,21.831438,14.709331
nyu29984,588015509288910995,44.64945707,0.06651791,3325,41,4,406,GALAXY,17.328615,5.536793E-3,16.38838,4.031615E-3,17.450884,8.614655E-3,16.521254,6.086218E-3,716.099426,712.291199,4.713944,12.962253,2.749768,4.76,28.09138661,53.9,17.561632,22.849289,26.497267,14.035172,18.134085,20.112389,103.551308,91.472061,92.585777
nyu29849,588015509287928041,42.44588086,0.2042489,3325,41,4,391,GALAXY,17.967466,7.194779E-3,17.056637,5.197211E-3,18.056875,0.010743,17.139149,8.022635E-3,1968.00537,1095.58057,3.471943,10.291607,2.964221,4.76,28.09138752,53.9,13.056695,15.977059,19.125937,12.065849,15.2399,16.545671,169.801575,170.167023,153.598297
nyu29778,588015509287600192,41.6880628,0.14067386,3325,41,4,386,GALAXY,16.315666,3.470754E-3,15.481499,2.911287E-3,16.404325,8.430318E-3,15.594823,7.550449E-3,1390.0022,1012.078,4.935446,15.216463,3.083098,4.76,28.09138789,53.9,28.226671,34.943264,37.656548,18.878059,23.346443,26.979633,164.20726,168.428711,168.787506
nyu29747,588015509287403632,41.15292048,0.14207917,3325,41,4,383,GALAXY,15.865189,3.107574E-3,15.062678,2.623267E-3,15.974815,0.017181,15.187634,0.017382,1402.61694,230.457458,7.773016,25.327492,3.258386,4.76,28.0913882,53.9,43.193375,51.266708,55.134674,23.141888,28.552601,31.686882,96.629646,99.287979,98.280045
nyu29746,588015509287403626,41.14534046,0.11753536,3325,41,4,383,GALAXY,17.150469,5.26851E-3,16.267021,3.821892E-3,17.208361,0.010508,16.347815,8.843396E-3,1179.48767,161.63475,3.759428,10.942567,2.910701,4.76,28.0913882,53.9,18.662804,22.100969,24.014688,13.833803,17.204004,18.019403,6.641852,12.278835,0.318463
nyu29745,588015509287338128,41.09327477,0.03235653,3325,41,4,382,GALAXY,17.252424,5.29363E-3,16.334007,4.002537E-3,17.338707,0.046235,16.441402,0.03875,405.19931,1049.6637,4.83798,14.798929,3.058907,4.76,28.09138821,53.9,24.728113,29.205395,34.536793,9.211193,11.284513,11.320497,148.850876,153.030045,152.750153
nyu29622,588015509286093022,38.24577706,0.07394206,3325,41,4,363,GALAXY,18.050861,8.161714E-3,17.20141,6.019621E-3,18.119823,0.016115,17.293007,0.013043,784.333191,1024.25281,4.183176,12.840826,3.069636,4.76,28.09138926,53.9,16.569973,22.609688,24.655371,10.708965,13.367284,14.648128,46.44434,46.259399,52.717754
nyu29602,588015509286027364,38.04928835,0.20423717,3325,41,4,362,GALAXY,16.923656,5.009054E-3,15.969136,3.728478E-3,17.05505,0.054841,16.110826,0.048115,1968.61304,598.776611,4.477782,14.037046,3.134821,4.76,28.09138934,53.9,34.160625,38.715771,39.798321,9.887829,11.458055,12.840553,6.906074,6.395363,6.810123
nyu29315,588015509283537078,32.41146643,0.20709732,3325,41,4,324,GALAXY,18.246248,8.382578E-3,17.359041,6.075684E-3,18.290234,0.024357,17.441484,0.019024,1995.34302,1067.71069,3.240901,9.34484,2.883408,4.76,28.09139115,53.9,15.190346,17.690088,18.284786,7.387505,8.616,10.585098,144.579803,146.57843,132.542709
nyu29256,588015509283078270,31.29650105,0.09219004,3325,41,4,317,GALAXY,17.104643,5.596046E-3,16.204401,4.13129E-3,17.223871,0.024953,16.341459,0.027472,950.490112,459.624176,6.850993,21.8354,3.187188,4.76,28.09139165,53.9,29.320431,36.200844,41.152508,14.206306,18.454222,20.285509,26.377609,27.759609,27.657673
nyu29237,588015509282881679,30.91022757,0.19984209,3325,41,4,314,GALAXY,17.551807,6.022173E-3,16.678596,4.824278E-3,17.55101,8.913334E-3,16.679855,6.3208E-3,1928.86035,1030.88721,3.961468,12.702421,3.206494,4.76,28.0913919,53.9,17.191093,19.083094,20.371269,12.324243,14.964584,17.425468,1.778751,3.168993,176.589615
nyu29236,588015509282881673,30.90394855,0.20161816,3325,41,4,314,GALAXY,17.161619,5.484868E-3,16.245689,4.047202E-3,17.105087,0.020818,16.215693,0.022929,1944.99695,973.804504,7.638898,21.351374,2.795085,4.76,28.0913919,53.9,34.967098,38.04311,39.176926,10.4109,12.189193,13.84445,120.967903,122.647507,119.421303
nyu29225,588015509282816160,30.7146175,0.08724299,3325,41,4,313,GALAXY,16.822214,4.606566E-3,15.89879,3.505825E-3,16.809195,0.011939,15.904682,0.013851,905.322998,614.105835,7.144526,24.496695,3.428736,4.76,28.09139194,53.9,31.333616,38.75135,45.06575,19.040712,24.366423,26.706947,131.273712,130.286697,130.591492
nyu29223,588015509282816140,30.69595973,0.04135625,3325,41,4,313,GALAXY,16.980362,4.918689E-3,16.050636,3.739909E-3,17.052216,8.423598E-3,16.147623,7.337731E-3,488.162506,444.655121,4.559271,13.674971,2.999377,4.76,28.09139194,53.9,22.263454,27.089504,28.777275,12.485886,15.529302,18.475863,139.639587,134.894089,135.744156
nyu29222,588015509282816130,30.674349,0.20427859,3325,41,4,313,GALAXY,17.833641,6.822085E-3,16.929647,5.135766E-3,17.871832,0.010154,16.9911,7.000293E-3,1969.17554,247.678314,3.712644,10.886703,2.932331,4.76,28.09139194,53.9,14.179822,18.224937,20.399675,11.850765,14.39502,16.180792,91.741989,95.814613,114.022278
nyu29205,588015509282619583,30.25869769,0.03128495,3325,41,4,310,GALAXY,17.849117,0.010209,16.992102,6.829391E-3,18.001106,0.081216,17.216024,0.048331,396.567291,552.908508,5.404011,16.195244,2.996893,4.76,28.09139216,53.9,30.515947,36.266949,39.48111,6.45272,7.633564,9.10802,139.250961,140.428085,141.449097
nyu29198,588015509282554025,30.13309987,0.0436997,3325,41,4,309,GALAXY,16.961258,5.101844E-3,16.081127,3.863455E-3,16.997627,0.012184,16.13327,0.012783,509.472321,772.096558,7.247947,23.799347,3.283598,4.76,28.09139218,53.9,27.36315,33.515778,39.297771,18.749352,24.146145,27.181692,54.096603,50.292274,44.602669
nyu29187,588015509282553861,30.06531187,0.19923704,3325,41,4,309,GALAXY,15.055176,2.4551E-3,14.278264,2.15612E-3,15.164541,5.883266E-3,14.370299,5.918559E-3,1923.37427,155.345398,11.867522,35.9259,3.027245,4.76,28.09139218,53.9,47.928238,55.432652,60.45435,43.620907,51.826031,53.86657,98.971466,81.759178,70.25119
nyu29120,588015509281898663,28.65136328,0.18684558,3325,41,4,299,GALAXY,16.957003,4.724542E-3,16.005163,3.579697E-3,17.056301,0.011363,16.084204,0.013428,1811.06677,912.049927,5.176492,16.859577,3.256951,4.76,28.0913927,53.9,22.589447,32.095314,36.816761,18.131397,24.712452,28.248907,91.999397,83.499886,89.100082
nyu29111,588015509281898615,28.56151159,0.11071592,3325,41,4,299,GALAXY,17.80966,6.421208E-3,16.905752,4.868885E-3,17.882721,0.010706,16.970432,9.399231E-3,1119.05066,95.559868,3.259325,9.637707,2.956964,4.76,28.0913927,53.9,15.740256,18.050636,19.822878,8.974868,11.92942,13.331753,135.17041,126.955994,126.621162
nyu29079,588015509281570986,27.90790757,0.09860095,3325,41,4,294,GALAXY,16.241507,3.90502E-3,15.327501,3.03481E-3,16.315882,0.05928,15.476932,0.049945,1008.88068,959.130798,8.989902,30.7682,3.422529,4.76,28.09139293,53.9,57.309284,64.992325,69.56353,18.65229,20.581152,22.027042,28.058014,28.293367,27.982748
nyu28955,588015509280522409,25.5438477,0.12475212,3325,41,4,278,GALAXY,16.54294,4.257014E-3,15.653362,3.565021E-3,16.682343,0.046065,15.786479,0.047284,1246.08154,1244.88574,5.588484,17.721205,3.171022,4.76,28.0913937,53.9,40.371975,44.615894,41.516819,9.430091,12.168318,14.144508,46.749691,46.022701,47.487286
nyu28889,588015509279932445,24.15557907,0.11136123,3325,41,4,269,GALAXY,17.574772,6.375256E-3,16.754383,5.157417E-3,17.53277,0.137363,16.810753,0.54989,1123.8335,873.793213,4.756675,14.748074,3.1005,4.76,28.09139415,53.9,17.662935,21.122774,23.91687,15.792243,18.537533,20.437086,31.398256,15.653545,174.608902
nyu28854,588015509279473815,23.15379613,0.03548616,3325,41,4,262,GALAXY,16.51981,4.144615E-3,15.577366,3.206549E-3,16.611507,0.010373,15.685954,9.155667E-3,433.761993,1294.36951,7.163373,23.577221,3.291357,4.76,28.09139451,53.9,28.322529,36.378757,40.391151,23.393797,30.71343,34.408436,108.246117,106.021561,118.632927
nyu28832,588015509279277193,22.65904695,0.11488841,3325,41,4,259,GALAXY,16.622684,4.590261E-3,15.700513,3.449136E-3,16.724075,0.010427,15.801574,8.536456E-3,1155.22644,879.807251,8.55518,26.732359,3.124699,4.76,28.09139468,53.9,30.159704,37.389351,43.344788,21.061394,26.821785,29.58691,94.696358,80.424599,82.939178
nyu28780,588015509278752940,21.49422094,0.08745562,3325,41,4,251,GALAXY,17.593658,6.49915E-3,16.648924,4.69248E-3,17.568611,0.01587,16.622747,0.014251,905.528625,1179.01819,5.347302,18.163136,3.396692,4.76,28.0913951,107.8,18.942537,25.148878,27.229166,15.742446,22.083376,22.09413,116.5541,116.629723,104.547493
nyu28739,588015509278425256,20.70626405,0.03201224,3325,41,4,246,GALAXY,17.112686,4.843716E-3,16.339094,3.924049E-3,17.219664,0.010559,16.448778,0.01036,401.072754,821.388245,3.636808,10.100307,2.777245,4.76,28.09139548,107.8,17.931196,20.31152,21.026018,10.375621,13.029637,14.905601,113.639938,120.325394,133.361969
nyu28738,588015509278425163,20.70499132,0.04460919,3325,41,4,246,GALAXY,15.407226,2.884375E-3,14.617382,2.397785E-3,15.481112,4.308171E-3,14.641683,3.103982E-3,515.569275,809.779541,13.126083,36.229839,2.760141,4.76,28.09139548,107.8,52.105324,58.544064,63.403728,32.681343,36.313107,39.207237,158.022552,162.047043,161.965775
nyu28726,588015509278359701,20.48219319,0.06635283,3325,41,4,245,GALAXY,17.283941,8.732178E-3,16.21616,5.60326E-3,17.52527,0.08995,16.51334,0.066026,713.222839,145.374588,9.592101,29.248926,3.049272,4.76,28.0913955,107.8,34.117531,44.408573,43.991852,9.800403,11.994076,14.623273,25.260025,27.08885,26.796116
nyu28696,588015509278163054,20.08629417,0.14341416,3325,41,4,242,GALAXY,18.551149,0.014082,17.593454,8.488067E-3,18.496864,0.029368,17.582409,0.023107,1413.53625,629.176819,5.537143,14.834167,2.679029,4.76,28.09139572,107.8,20.736732,27.463242,33.42033,7.042811,7.980607,9.098026,139.120422,140.780792,143.107178
nyu28657,588015509277769837,19.23563959,0.13814781,3325,41,4,236,GALAXY,16.72835,4.649932E-3,15.875795,3.620998E-3,16.820208,7.758704E-3,15.961455,5.482236E-3,1365.47119,1062.59753,7.431171,20.415993,2.747345,4.76,28.09139604,107.8,22.559425,27.815487,29.101522,21.458769,23.876196,26.825766,126.680092,121.5289,176.86203
nyu28635,588015509277704330,19.01754435,0.01833882,3325,41,4,235,GALAXY,16.853397,4.67605E-3,16.088976,3.831436E-3,17.001715,0.011299,16.221476,0.013073,276.458618,441.551361,5.512679,15.666272,2.841862,4.76,28.0913961,107.8,23.806511,30.646257,30.665764,13.245797,16.96517,19.432865,46.237122,44.721592,54.975071
nyu28619,588015509277638812,18.88386261,0.0405235,3325,41,4,234,GALAXY,17.089958,5.620812E-3,16.2271,4.224042E-3,17.201075,8.482181E-3,16.358612,6.691135E-3,478.100647,587.36554,4.937374,14.621315,2.961354,4.76,28.09139612,107.8,25.163862,28.242416,33.548183,12.143798,15.20229,14.718616,161.442551,160.608444,163.091522
nyu28616,588015509277638792,18.85617417,0.0716559,3325,41,4,234,GALAXY,16.835928,6.065355E-3,15.983484,5.431707E-3,16.998404,8.760163E-3,16.162924,8.032937E-3,761.088745,335.598969,6.439894,17.840912,2.770374,4.76,28.09139612,107.8,23.472944,27.555937,28.685503,16.264202,20.797506,23.13965,21.403702,25.809195,34.673161
nyu28614,588015509277573274,18.82318356,0.16526281,3325,41,4,233,GALAXY,17.014971,5.269832E-3,16.130051,3.847121E-3,17.101538,6.746619E-3,16.247183,4.942625E-3,1612.04614,1396.40503,4.672019,13.544113,2.898985,4.76,28.09139622,107.8,20.053162,22.780281,24.970881,16.538639,20.103844,22.925463,6.500791,19.169392,2.457578
nyu28612,588015509277573267,18.81989003,0.18565285,3325,41,4,233,GALAXY,15.717779,3.087795E-3,14.880986,2.585514E-3,15.827109,0.013824,15.047663,0.020292,1797.35339,1366.40759,8.059725,24.396645,3.026983,4.76,28.09139622,107.8,40.480835,41.502754,49.135029,29.016853,37.273041,43.555542,153.312256,164.323486,152.721649
nyu28606,588015509277573144,18.75115784,0.03092333,3325,41,4,233,GALAXY,16.808533,4.947008E-3,15.919018,3.792689E-3,16.998285,0.017178,16.158833,0.016193,390.766083,742.190186,5.826449,17.389521,2.984583,4.76,28.09139622,107.8,32.549126,37.692837,42.406086,11.990654,13.888844,15.207018,1.454356,2.18596,3.38885
nyu286,588015508214448193,42.98384429,-0.83628167,3325,41,2,395,GALAXY,14.506361,2.126557E-3,13.659025,1.870096E-3,14.570098,3.011053E-3,13.732682,3.065156E-3,139.12384,542.044556,14.695108,47.444824,3.228614,4.6,28.08873711,53.9,66.941154,81.380402,89.471199,49.480061,59.239433,63.735962,33.29369,32.696701,36.261158
nyu28593,588015509277507604,18.58978249,0.17971811,3325,41,4,232,GALAXY,15.430483,2.777821E-3,14.562047,2.331464E-3,15.528268,4.316221E-3,14.666192,3.652329E-3,1743.30188,635.909363,10.543607,33.809704,3.206654,4.76,28.09139629,107.8,41.405266,52.377705,58.03466,39.989613,49.759171,54.60947,179.155807,29.847563,38.532917
nyu28591,588015509277507702,18.54198323,0.20171835,3325,41,4,232,GALAXY,16.529039,4.290987E-3,15.723696,3.46274E-3,16.639675,7.004723E-3,15.840515,5.321514E-3,1943.19958,201.372589,7.956181,21.857887,2.747284,4.76,28.09139629,107.8,27.134121,31.636763,33.443871,20.456554,24.129427,28.147322,103.053833,105.21244,95.316826
nyu28583,588015509277442175,18.44522859,0.20202156,3325,41,4,231,GALAXY,16.104286,3.318408E-3,15.218177,2.770217E-3,16.199425,0.022535,15.342606,0.021538,1945.94763,682.899048,5.262791,17.583117,3.341025,4.76,28.09139635,107.8,33.856602,40.784515,45.504322,22.204596,30.277523,34.216957,157.00621,156.574753,162.585709
nyu28564,588015509277311112,18.15796142,0.08632144,3325,41,4,229,GALAXY,17.471117,6.034098E-3,16.521521,4.458057E-3,17.538027,0.011831,16.616617,0.014621,894.115601,793.915405,4.674605,13.105168,2.803482,4.76,28.09139648,107.8,17.724838,23.93442,24.957508,12.925283,15.30573,17.255289,29.544844,36.57465,40.313438
nyu28559,588015509277311086,18.09793539,0.07916637,3325,41,4,229,GALAXY,16.608526,4.295027E-3,15.760203,3.442464E-3,16.765387,0.011404,15.940899,7.922517E-3,828.999695,248.256317,6.065853,16.52529,2.724314,4.76,28.09139648,107.8,26.979231,30.015682,31.205528,13.087046,15.41847,17.25304,85.295433,86.144806,90.720551
nyu28556,588015509277245599,18.05648418,0.1059356,3325,41,4,228,GALAXY,18.733212,0.019172,17.384775,9.619066E-3,18.254412,0.445892,17.231852,0.427594,1072.26038,1232.3335,11.562412,37.203362,3.217613,4.76,28.09139655,107.8,14.085744,25.206425,28.809191,8.117452,21.473391,22.557846,175.295258,26.334509,24.932377
nyu28554,588015509277245597,18.05505759,0.10576235,3325,41,4,228,GALAXY,16.584341,4.317279E-3,15.598111,3.23982E-3,16.621298,0.013983,15.727579,0.010624,1070.68445,1219.36646,7.235363,21.527617,2.975333,4.76,28.09139655,107.8,27.411955,33.588955,41.502758,22.134438,28.106173,31.571196,113.602898,126.839119,137.416641
nyu28515,588015509276983448,17.44683031,0.16958666,3325,41,4,224,GALAXY,16.838657,5.817243E-3,15.965563,5.263234E-3,16.986401,7.660971E-3,16.125019,5.626211E-3,1650.93201,1134.57813,6.187041,18.065584,2.919907,4.76,28.09139673,107.8,22.157152,29.477983,32.386841,18.080002,21.235491,23.557058,151.853439,156.485306,162.321609
nyu28513,588015509276983420,17.41596592,0.06303926,3325,41,4,224,GALAXY,17.694168,6.45339E-3,16.796967,4.862404E-3,17.691164,0.03385,16.843481,0.026098,682.32843,854.383057,4.045074,13.134225,3.246968,4.76,28.09139673,107.8,24.426966,29.038128,26.061584,11.103163,13.327008,16.477158,42.556812,42.866699,39.643211
nyu28497,588015509276917889,17.24578586,0.09146823,3325,41,4,223,GALAXY,16.645561,3.907707E-3,15.857821,3.333376E-3,16.715603,0.024535,15.938614,0.024878,940.750122,668.490662,3.995876,12.695859,3.177241,4.76,28.09139681,107.8,26.538591,30.194935,37.079224,12.127676,15.696837,15.01158,144.231796,144.205688,144.878845
nyu28479,588015509276852322,17.09683896,0.08977303,3325,41,4,222,GALAXY,15.413966,2.818476E-3,14.495341,2.364733E-3,15.537876,0.017886,14.679319,0.015153,925.312317,675.695129,10.033717,29.558237,2.945891,4.76,28.09139686,107.8,54.414204,64.375244,66.796135,24.055107,29.445156,33.963242,9.738957,11.009192,11.187485
nyu28475,588015509276852295,17.05023557,0.07061968,3325,41,4,222,GALAXY,16.531887,4.309263E-3,15.669461,3.409754E-3,16.522545,8.392031E-3,15.730042,6.622889E-3,751.18219,252.182693,9.030308,28.375366,3.142237,4.76,28.09139686,107.8,31.918987,39.841843,43.955433,25.234062,29.586769,30.759239,43.930351,55.073063,52.154297
nyu28472,588015509276786795,17.01977679,0.02191348,3325,41,4,221,GALAXY,16.608706,4.528764E-3,15.790082,3.568799E-3,16.692162,7.789486E-3,15.897274,6.186114E-3,308.441772,1336.44568,8.018292,24.452747,3.04962,4.76,28.09139694,107.8,25.405001,31.717464,35.902573,24.031342,29.320904,31.635824,91.512756,102.355499,139.632568
nyu28447,588015509276655756,16.71456892,0.18095221,3325,41,4,219,GALAXY,16.460093,5.115786E-3,15.564087,4.011366E-3,16.647499,0.048939,15.865974,0.066122,1753.92896,1283.47034,12.192171,39.82164,3.266165,4.76,28.09139699,107.8,66.386368,70.488579,67.509926,10.720994,12.757655,15.076053,56.164192,54.372768,54.384869
nyu28415,588015509276590195,16.45039053,0.0594252,3325,41,4,218,GALAXY,17.346058,5.384E-3,16.445745,4.139445E-3,17.412298,8.018279E-3,16.540812,6.079566E-3,649.132385,243.302948,3.897028,11.062931,2.838813,4.76,28.0913971,107.8,17.556385,21.535954,21.53545,12.321921,14.165558,16.850266,20.48419,25.658524,14.193465
nyu28328,588015509276131466,15.46228952,0.09753141,3325,41,4,211,GALAXY,17.823645,7.114895E-3,16.935774,5.217745E-3,17.848293,0.021068,17.013712,0.014884,995.378418,787.816895,3.75562,10.629648,2.830331,4.76,28.09139744,107.8,18.195229,21.191849,25.176039,9.196221,10.408225,11.738991,29.997873,30.406403,33.608475
nyu28323,588015509276131435,15.39154516,0.04023201,3325,41,4,211,GALAXY,17.841408,8.864595E-3,16.994843,6.464529E-3,17.866571,0.01645,17.089531,0.012098,474.525848,144.930313,6.315179,16.930458,2.680915,4.76,28.09139744,107.8,16.32634,20.837692,24.502684,15.305133,17.137772,18.677233,25.88475,27.525091,34.376968
nyu28321,588015509276131363,15.45345687,0.09429326,3325,41,4,211,GALAXY,16.846113,4.820831E-3,15.865557,3.562372E-3,17.001457,0.06205,16.061884,0.060423,965.943115,707.538574,5.714859,18.03578,3.155945,4.76,28.09139744,107.8,36.853848,42.264389,49.778027,10.90143,13.5211,12.905846,86.070015,85.124733,87.251884
nyu28307,588015509276065892,15.28652361,0.03925064,3325,41,4,210,GALAXY,16.300636,3.754701E-3,15.403023,2.966695E-3,16.369307,9.034019E-3,15.491769,9.482358E-3,465.631042,551.23938,7.054071,23.507908,3.33253,4.76,28.09139744,107.8,31.003746,36.939686,41.805172,24.969355,33.670689,36.49836,12.228264,0.338935,10.51283
nyu28305,588015509276065827,15.26645137,0.05067714,3325,41,4,210,GALAXY,16.320234,3.672151E-3,15.385434,2.929865E-3,16.404726,0.021676,15.507944,0.020212,569.485046,368.742767,5.872562,17.934086,3.053877,4.76,28.09139744,107.8,29.544554,36.597023,38.926228,19.920044,25.337193,30.568954,142.093903,142.703156,145.346909
nyu28279,588015509275869308,14.78917735,0.19832941,3325,41,4,207,GALAXY,17.439573,5.562426E-3,16.50828,4.231259E-3,17.557793,0.029131,16.641088,0.027,1911.5885,112.716881,3.39408,9.85493,2.903564,4.76,28.09139761,107.8,20.680752,23.349348,26.853951,8.312536,10.576143,11.68918,120.638397,113.907013,120.415871
nyu28272,588015509275738262,14.59563442,0.05572901,3325,41,4,205,GALAXY,18.245508,8.03892E-3,17.332243,5.88114E-3,18.279453,0.031158,17.393513,0.028619,615.233154,1075.64478,2.742056,6.950081,2.534624,4.76,28.09139769,107.8,13.337029,9.799188,11.143437,7.465142,8.418454,10.072834,155.765442,13.913219,173.181427
nyu28254,588015509275672658,14.35104541,0.10968397,3325,41,4,204,GALAXY,16.39941,4.915237E-3,15.515634,4.816576E-3,16.495707,0.014472,15.633533,0.01373,1105.651,212.809357,6.660676,20.304815,3.048462,4.76,28.09139775,107.8,34.418453,37.961338,41.12989,17.921034,21.039061,23.28409,169.448914,167.988541,170.61528
nyu28236,588015509275541708,14.1631327,0.11696677,3325,41,4,202,GALAXY,16.646328,4.640933E-3,15.70047,3.310431E-3,16.718073,7.159885E-3,15.78834,5.175473E-3,1171.89038,1226.53467,5.448011,16.286238,2.989391,4.76,28.09139776,107.8,27.259743,32.535488,36.438099,16.280367,19.559437,21.105274,146.849197,147.603012,146.605209
nyu28227,588015509275541670,14.10961075,0.0438254,3325,41,4,202,GALAXY,15.77219,3.231619E-3,14.92871,2.63139E-3,15.882302,8.040679E-3,15.058524,7.306144E-3,507.002075,740.236694,9.951441,32.67392,3.283335,4.76,28.09139776,107.8,39.728767,51.780796,55.785767,32.596867,39.795506,45.114254,142.775589,147.759766,141.768723
nyu28226,588015509275541659,14.09608296,0.06254043,3325,41,4,202,GALAXY,16.837709,4.59977E-3,16.009869,3.782004E-3,16.923132,7.136325E-3,16.090916,5.819161E-3,677.13147,617.204834,5.048148,15.692886,3.108642,4.76,28.09139776,107.8,23.470139,27.230352,-9999,17.115776,21.93256,-9999,19.384584,41.153305,-9999
nyu28222,588015509275541637,14.06685448,0.11015426,3325,41,4,202,GALAXY,16.756489,4.12875E-3,15.901761,3.417293E-3,16.818783,4.727838E-3,15.971626,3.69343E-3,1110.01941,351.351044,3.787807,10.49078,2.769618,4.76,28.09139776,107.8,17.968685,20.655802,22.926369,14.50802,18.45126,20.153978,0.368771,9.534742,154.135895
nyu28207,588015509275410582,13.81725118,0.09503675,3325,41,4,200,GALAXY,16.784292,4.263895E-3,15.994436,3.503402E-3,16.871675,6.300378E-3,16.09001,5.23995E-3,972.528809,804.56073,4.449471,13.465202,3.026247,4.76,28.09139776,107.8,21.965643,26.604698,29.266199,19.815462,24.703585,26.249453,61.20649,63.265991,57.624714
nyu27987,588015509273772182,10.05516756,0.11381435,3325,41,4,175,GALAXY,17.356274,5.787313E-3,16.353592,4.098888E-3,17.430206,0.010023,16.460724,7.459946E-3,1142.34717,630.942505,4.732154,14.258506,3.013111,4.76,28.0913986,107.8,20.819849,26.036606,30.426588,14.803971,20.739086,23.026226,143.291443,146.593109,141.040604
nyu27958,588015509273641085,9.74770679,0.10187274,3325,41,4,173,GALAXY,17.117708,5.042299E-3,16.223125,3.842905E-3,17.185137,8.468606E-3,16.280085,6.841075E-3,1033.6825,557.963684,4.682758,14.095006,3.00998,4.76,28.09139866,107.8,20.254286,24.700811,27.289045,14.588102,18.981962,24.435915,44.624897,51.246376,55.408382
nyu27955,588015509273641056,9.70665699,0.08315896,3325,41,4,173,GALAXY,16.705561,4.577591E-3,15.824528,3.621433E-3,16.696779,0.01274,15.812736,0.01166,863.528198,184.841202,6.958646,24.909397,3.579633,4.76,28.09139866,107.8,36.672131,40.710873,42.359516,16.679817,19.881559,22.073643,158.158829,155.460541,154.655243
nyu27946,588015509273575627,9.62055527,0.09750185,3325,41,4,172,GALAXY,17.507254,6.13529E-3,16.610291,4.712975E-3,17.598063,0.017985,16.712784,0.016616,993.949402,763.002258,3.577836,10.614021,2.966604,4.76,28.09139866,107.8,20.168131,24.194181,27.46067,9.177479,10.945292,12.539277,75.754295,72.470207,68.284447
nyu27920,588015509273444541,9.33231205,0.14287628,3325,41,4,170,GALAXY,17.820511,8.135675E-3,16.936613,6.878332E-3,17.913614,0.012776,17.02416,0.01042,1406.73682,864.41687,4.080214,11.537257,2.827611,4.76,28.09139861,107.8,17.174091,20.735479,21.102694,8.788167,11.171374,12.327374,177.47316,1.482325,167.670288
nyu27850,588015509272854623,7.89954601,0.16712522,3325,41,4,161,GALAXY,17.526625,6.148843E-3,16.604164,4.475977E-3,17.62141,0.022711,16.665306,0.019018,1627.02466,89.039795,4.001815,12.381249,3.093909,4.76,28.09139883,107.8,19.030102,20.590593,22.658657,12.115449,17.144547,18.213486,175.612793,5.925047,19.207935
nyu27828,588015509272658031,7.5435426,0.0303156,3325,41,4,158,GALAXY,16.770971,4.754297E-3,15.839602,3.587642E-3,16.845295,8.657281E-3,15.938536,6.566594E-3,383.333038,936.030579,7.384224,22.174334,3.002934,4.76,28.0913989,107.8,24.892317,31.613611,33.734653,20.966553,26.159321,29.664175,158.816925,167.294464,175.050827
nyu27789,588015509272395853,6.85547604,0.1929227,3325,41,4,154,GALAXY,16.481951,3.854369E-3,15.584017,3.076952E-3,16.515842,5.459198E-3,15.647952,4.162617E-3,1861.21143,124.387444,5.623483,17.931871,3.188748,4.76,28.09139901,107.8,25.07649,32.539661,36.740696,23.688049,27.836784,31.582827,170.428223,166.351181,0.532929
nyu27785,588015509272330337,6.70439672,0.0381256,3325,41,4,153,GALAXY,15.94081,3.216485E-3,15.108531,2.682652E-3,16.017923,0.010844,15.210354,9.711247E-3,454.139771,112.446747,6.595331,21.814306,3.307538,4.76,28.09139908,107.8,31.743896,39.668358,43.254097,28.61375,33.042625,37.08073,125.428169,103.224983,100.821121
nyu27766,588015509272264744,6.58872115,0.15413899,3325,41,4,152,GALAXY,16.411398,4.007111E-3,15.502832,3.122623E-3,16.55764,0.048845,15.64635,0.044946,1508.80115,421.491669,6.700479,21.357616,3.187476,4.76,28.0913991,107.8,40.704044,49.207504,47.777386,12.52737,15.770017,19.737316,152.447983,152.307434,150.359421
nyu27758,588015509272199310,6.40708933,0.036743,3325,41,4,151,GALAXY,15.190138,2.546451E-3,14.267938,2.149099E-3,15.270245,0.011036,14.374106,0.010335,441.634369,131.68367,9.852801,31.889631,3.236605,4.76,28.09139915,107.8,52.065422,64.034966,70.342888,37.204288,44.049706,48.165173,100.068336,99.764,97.331497
nyu27656,588015509271478518,4.89550509,0.20053156,3325,41,4,140,GALAXY,16.253607,3.699199E-3,15.344978,2.913453E-3,16.346518,5.902356E-3,15.456367,4.694285E-3,1930.65088,1360.6283,6.974302,22.450396,3.219017,4.76,28.09139937,107.8,28.243149,36.998608,44.101185,27.585613,35.128895,40.978802,125.199944,91.873108,91.49202
nyu27619,588015509271085273,4.00026479,0.17940028,3325,41,4,134,GALAXY,16.411856,5.589529E-3,15.53131,4.142949E-3,16.748287,0.014167,15.86714,6.398608E-3,1738.85571,1388.27124,11.971766,35.027397,2.925834,4.76,28.09139952,107.8,57.328522,54.510464,57.666817,15.197984,23.345308,27.656328,123.381477,114.029213,114.302094
nyu27618,588015509271150735,4.00665833,0.18007151,3325,41,4,135,GALAXY,15.983319,3.324678E-3,15.106437,2.702222E-3,16.11899,0.010379,15.230642,9.323019E-3,1744.9574,85.394516,6.530612,20.113932,3.079946,4.76,28.09139947,107.8,39.625343,45.782349,51.497215,22.68697,27.747908,31.607561,79.227127,83.385635,86.051544
nyu27566,588015509270823050,3.31914239,0.0166423,3325,41,4,130,GALAXY,16.755522,4.36078E-3,15.893905,3.503643E-3,16.934256,0.035247,16.088373,0.032086,259.65332,640.956909,4.251608,12.805269,3.011865,4.76,28.09139948,107.8,35.64613,37.246334,35.839581,10.38824,12.888348,14.846017,60.987141,57.461716,60.736156
nyu27530,588015509270626526,2.84645155,0.19010765,3325,41,4,127,GALAXY,17.326149,5.794615E-3,16.454664,4.454412E-3,17.407539,0.010069,16.554041,8.249475E-3,1836.23132,426.235382,4.922747,14.678234,2.981716,4.76,28.09139965,107.8,21.262789,27.519278,30.215532,14.11572,17.258615,19.360952,132.349014,128.537048,116.922707
nyu27485,588015509270298758,2.14053236,0.02439879,3325,41,4,122,GALAXY,17.252298,5.440708E-3,16.22678,3.956017E-3,17.306644,0.013768,16.311722,0.013056,329.814392,814.681519,4.388323,13.708364,3.123827,4.76,28.09139981,107.8,20.85556,29.703167,34.081783,15.095823,19.274902,21.151594,136.661819,139.364258,127.793793
nyu27375,588015509269577878,0.4801739,0.04776359,3325,41,4,111,GALAXY,18.224886,0.011069,17.152676,6.957265E-3,18.393892,0.725815,17.29715,0.659299,542.227966,691.380188,5.218548,14.255221,2.731645,4.76,28.09140001,107.8,19.286238,25.314114,26.948984,6.83834,8.819655,10.309745,42.973335,36.824131,42.657001
nyu27358,588015509269446827,0.1756291,0.02662922,3325,41,4,109,GALAXY,17.406258,5.87834E-3,16.531147,4.469756E-3,17.439672,9.73078E-3,16.593439,7.592177E-3,350.345184,645.007935,4.61111,14.071794,3.051715,4.76,28.09139998,107.8,18.613419,24.26832,28.14711,14.843279,18.213985,22.075224,2.428,167.539597,173.244232
nyu273,588015508213858538,41.71461811,-0.83496,3325,41,2,386,GALAXY,16.944715,5.171686E-3,16.07427,3.837738E-3,17.048504,0.034943,16.203403,0.033077,150.613815,1253.79736,6.87358,22.095303,3.214526,4.6,28.08873792,53.9,37.65221,47.403076,44.858871,12.285244,15.992838,19.396894,166.125977,164.169144,163.445328
nyu27212,588015509268267171,357.54624053,0.09664326,3325,41,4,91,GALAXY,17.566906,7.049849E-3,16.64575,4.822543E-3,17.621895,0.011089,16.702145,0.010156,986.840332,1239.70166,4.376135,13.479035,3.080123,4.76,28.09140003,107.8,20.379684,24.844891,27.85174,11.715287,14.369693,15.835628,134.56517,137.536209,138.917664
nyu272,588015508213923898,41.79694339,-0.8358891,3325,41,2,387,GALAXY,16.784492,4.843896E-3,15.905598,3.617759E-3,16.983288,0.026047,16.086393,0.030446,142.283585,641.105713,6.534279,19.573259,2.995473,4.6,28.08873782,53.9,31.474026,42.709908,47.218681,11.509096,14.95848,15.961661,56.299629,54.500633,51.700794
nyu27113,588015509267218583,355.1389974,0.0480364,3325,41,4,75,GALAXY,17.661194,7.583409E-3,16.751135,5.318721E-3,17.714027,0.012936,16.796318,8.881358E-3,544.872864,1132.03894,5.118683,14.726243,2.876959,4.76,28.09139999,107.8,17.430946,23.044748,23.570583,13.514514,15.740017,18.190403,146.991043,145.373154,142.047379
nyu27040,588015509266628809,353.68607762,0.19054173,3325,41,4,66,GALAXY,17.45369,6.47878E-3,16.542873,4.702495E-3,17.614569,0.035632,16.726357,0.035387,1840.52344,172.4776,4.543591,12.693297,2.793671,4.76,28.09139997,107.8,23.053871,27.660963,27.351149,9.561079,11.319971,13.131513,45.872086,48.038002,44.656551
nyu27038,588015509266628786,353.67486577,0.18252031,3325,41,4,66,GALAXY,15.598643,3.08218E-3,14.712903,2.495753E-3,15.739916,4.597262E-3,14.879678,3.37569E-3,1767.63513,70.569046,10.330616,29.636423,2.868795,4.76,28.09139997,107.8,39.7425,45.237846,51.324547,30.48078,36.860264,42.816792,89.797005,85.356201,86.621864
nyu27011,588015509266432137,353.26756174,0.05292539,3325,41,4,63,GALAXY,16.723314,4.646701E-3,15.770755,3.459865E-3,16.813021,0.027993,15.909494,0.025405,589.339783,451.275879,6.444652,20.063644,3.113224,4.76,28.09140006,107.8,38.129814,42.306629,45.269405,13.463431,16.154976,17.974104,160.749985,163.682617,162.008743
nyu26978,588015509266169862,352.63348525,0.08106508,3325,41,4,59,GALAXY,13.673148,1.879181E-3,12.832977,1.74764E-3,13.711549,0.022423,12.86812,0.023385,845.145264,130.884171,17.145546,52.541012,3.064411,4.76,28.09140009,107.8,114.28286,121.403877,116.081062,38.281013,45.907574,50.57967,21.474274,21.159779,19.170229
nyu2424,588015509294022860,56.3987511,9.7429E-4,3325,41,4,484,GALAXY,17.607025,6.706257E-3,16.659611,4.719005E-3,17.749249,0.016458,16.797382,0.013338,120.110153,1358.1687,4.600502,12.65851,2.751549,4.76,28.09138079,53.9,20.718725,26.379877,32.09306,8.936102,10.906777,10.422863,91.893463,94.280396,89.763664
nyu2386,588015509291663408,50.94015624,7.43644E-3,3325,41,4,448,GALAXY,16.041813,3.330883E-3,15.088021,2.645763E-3,16.126186,5.881384E-3,15.174356,5.240957E-3,179.184189,735.411011,7.738091,23.135702,2.989846,4.76,28.09138359,53.9,35.21846,43.634109,46.467594,20.434679,24.729149,25.504992,152.081223,156.470154,154.363754
nyu23356,588015508756627609,55.10615331,-0.34677078,3325,41,3,476,GALAXY,17.901051,7.287983E-3,16.96258,4.985414E-3,18.02227,0.035396,17.071182,0.033636,774.417053,496.436432,3.135931,9.665886,3.082302,4.72,28.11361527,53.9,22.005398,23.554234,28.041582,7.785028,12.344459,13.939206,58.417027,60.880459,59.308781
nyu22879,588015508754530466,50.28910618,-0.2144094,3325,41,3,444,GALAXY,17.052998,5.071476E-3,16.101212,3.660608E-3,17.08621,8.86682E-3,16.182434,6.311055E-3,1977.90881,261.240448,5.820937,17.499306,3.00627,4.72,28.1136177,53.9,23.027723,28.607397,33.157398,17.199884,21.024958,23.375177,37.513466,26.70142,22.738855
nyu22878,588015508754530465,50.29210432,-0.22151584,3325,41,3,444,GALAXY,16.771095,4.403294E-3,15.837029,3.308549E-3,16.915564,0.039888,15.974644,0.038561,1913.33691,288.49292,4.883822,14.482902,2.965485,4.72,28.1136177,53.9,30.353531,37.852543,38.582985,11.825985,15.534355,19.769218,32.30621,25.251614,23.982691
nyu2286,587731512617271401,45.07241885,-0.06653475,2738,40,3,219,GALAXY,17.270269,5.067915E-3,16.342926,3.91961E-3,17.286491,0.068497,16.367441,0.088139,1375.10254,951.033508,4.303023,14.56091,3.383879,4.72,28.25968384,161.7,18.908468,24.846684,26.281668,16.889627,22.085575,22.072899,116.578209,121.819679,142.436371
nyu22817,588015508754202804,49.6419234,-0.36224211,3325,41,3,439,GALAXY,17.853695,6.909343E-3,16.878185,4.797057E-3,17.940611,0.025799,16.985352,0.02278,634.217407,1183.03137,3.689193,10.980186,2.976311,4.72,28.11361814,53.9,20.616222,26.90641,26.472561,9.646367,12.890594,17.199316,118.347427,117.757858,123.628418
nyu2279,587731512617205966,44.91655539,-0.03933654,2738,40,3,218,GALAXY,17.482929,6.4689E-3,16.518185,4.522734E-3,17.635021,0.031109,16.664633,0.029731,1622.45801,895.114014,4.468253,12.535486,2.805456,4.72,28.25968382,161.7,20.923328,25.246931,26.179277,8.359054,10.183117,11.205793,118.283279,122.678719,122.569061
nyu22771,588015508754071697,49.25090995,-0.36651423,3325,41,3,437,GALAXY,17.433401,5.684607E-3,16.502405,4.197484E-3,17.41387,0.044636,16.604612,0.131838,595.371399,350.501648,4.033428,11.636878,2.885108,4.72,28.11361827,53.9,19.956678,26.569965,28.282442,12.148419,14.088563,17.629013,14.948822,20.672056,26.913055
nyu22700,588015508753678544,48.43571068,-0.38568076,3325,41,3,431,GALAXY,16.049744,3.26582E-3,15.106339,2.627858E-3,16.160765,0.075489,15.233599,0.069595,421.481537,1105.98694,5.467942,18.291229,3.345176,4.72,28.11361871,53.9,43.32436,48.073505,52.62912,14.766451,18.632004,20.638573,77.814011,80.835014,74.914406
nyu22699,588015508753678532,48.42190442,-0.35017017,3325,41,3,431,GALAXY,17.164017,4.894663E-3,16.259092,3.733762E-3,17.240948,0.030801,16.339024,0.031482,744.259094,980.479187,3.933966,11.99896,3.050093,4.72,28.11361871,53.9,21.886333,26.894217,31.53936,11.173588,15.592747,17.774809,110.560318,108.028549,103.575943
nyu22696,588015508753678429,48.43840099,-0.24145863,3325,41,3,431,GALAXY,14.295627,2.109513E-3,13.371873,1.832667E-3,14.25721,2.749341E-3,13.369569,0.012585,1732.50879,1130.41895,23.90728,69.442482,2.904658,4.72,28.11361871,53.9,134.98645,159.342316,160.946609,47.256458,53.519814,56.130051,67.794052,70.619484,70.571411
nyu22664,588015508753612814,48.19043125,-0.33314786,3325,41,3,430,GALAXY,14.267133,2.027451E-3,13.383435,1.797721E-3,14.25628,2.406593E-3,13.392851,1.774541E-3,898.907471,237.445786,20.8204,56.608128,2.718878,4.72,28.11361881,53.9,71.164261,81.019081,84.101151,65.625023,75.619102,79.667313,87.186172,80.707169,79.997467
nyu22453,588015508752826375,46.37855966,-0.40502763,3325,41,3,418,GALAXY,14.324782,2.02667E-3,13.435188,1.802366E-3,14.46486,0.014213,13.58695,0.015273,245.405579,98.970863,12.044614,40.34494,3.349625,4.72,28.1136196,53.9,69.193901,-9999,-9999,50.279213,-9999,-9999,129.143036,-9999,-9999
nyu22166,588015508751122487,42.53273036,-0.26697539,3325,41,3,392,GALAXY,15.31748,2.784961E-3,14.435198,2.254857E-3,15.408878,5.656967E-3,14.548987,5.546181E-3,1500.1991,524.572327,14.370406,45.312931,3.153211,4.72,28.1136214,53.9,56.026436,73.558228,81.918465,38.157242,47.036747,49.478767,103.251953,104.647324,104.36084
nyu22103,588015508750794793,41.82069122,-0.39035394,3325,41,3,387,GALAXY,15.654956,3.036223E-3,14.793046,2.45128E-3,15.76947,5.253263E-3,14.917723,4.622704E-3,378.62027,857.038696,10.752549,33.73468,3.137366,4.72,28.11362179,53.9,38.825096,52.477184,56.756428,34.067337,45.770508,49.878796,25.871307,19.910103,23.394064
nyu22015,588015508750336156,40.78410706,-0.39430633,3325,41,3,380,GALAXY,17.245523,8.770562E-3,16.269539,5.249059E-3,17.089556,0.016601,16.172029,0.010558,342.840759,961.554626,12.620441,33.76244,2.675219,4.72,28.11362212,53.9,44.82011,49.448715,49.830868,13.087902,16.549015,18.205442,50.638672,49.068455,51.897827
nyu22014,588015508750336149,40.76645845,-0.36785569,3325,41,3,380,GALAXY,16.960854,4.775717E-3,16.065107,3.578057E-3,17.026419,0.012293,16.150373,0.01174,583.266479,801.125671,5.385454,17.143314,3.183263,4.72,28.11362212,53.9,22.279161,27.196381,30.662722,19.201988,26.022982,28.281769,19.023388,164.500946,33.870373
nyu21982,588015508749943017,39.93293607,-0.25845238,3325,41,3,374,GALAXY,17.602516,6.839837E-3,16.768715,5.071863E-3,17.737661,9.856857E-3,16.925299,7.286937E-3,1577.99622,1390.41724,4.03867,11.412601,2.825832,4.72,28.11362254,53.9,15.790894,19.012371,21.734694,14.517068,17.128426,19.608002,177.557953,167.636154,162.184708
nyu21979,588015508749942973,39.83138546,-0.22619115,3325,41,3,374,GALAXY,17.309242,5.492485E-3,16.426794,4.103218E-3,17.371124,0.012141,16.497602,0.010133,1871.16028,467.291199,4.381464,14.424201,3.292097,4.72,28.11362254,53.9,20.640034,24.976204,28.612217,17.77553,22.939173,25.920935,155.271423,22.34881,25.181747
nyu21951,588015508749549742,39.03026881,-0.23923648,3325,41,3,368,GALAXY,17.125978,5.621028E-3,16.227919,4.034183E-3,17.219145,9.45911E-3,16.354975,6.476742E-3,1752.73865,1350.74536,5.094471,14.47898,2.842097,4.72,28.11362287,53.9,22.001528,26.573343,28.296968,14.203129,16.25071,18.962416,78.97818,71.635895,69.315971
nyu21922,588015508749222083,38.24828048,-0.32103782,3325,41,3,363,GALAXY,17.740183,8.610405E-3,16.918573,7.184601E-3,17.805798,0.021802,17.000835,0.017997,1009.41559,1047.33191,5.314672,17.486343,3.290202,4.72,28.11362312,53.9,22.002701,28.729866,31.013905,11.681332,15.458592,16.556341,177.719345,1.072128,0.916284
nyu21859,588015508748632129,36.88720283,-0.2445454,3325,41,3,354,GALAXY,14.168622,1.957656E-3,13.344749,1.785453E-3,14.297911,0.026624,13.481697,0.026174,1704.66809,923.701172,11.995022,41.353638,3.447567,4.72,28.11362366,53.9,82.212746,106.100098,116.212624,59.839436,70.915321,75.627602,135.04332,131.597549,130.44606
nyu2177,587731512616747016,43.77747512,-0.16250451,2738,40,3,211,GALAXY,16.118298,3.276545E-3,15.192798,2.715598E-3,16.214626,0.010057,15.334383,7.730349E-3,503.182922,67.14119,6.460294,18.596186,2.878536,4.72,28.2596837,161.7,37.568367,41.615364,42.652821,15.86088,18.143509,18.936138,171.426163,172.222473,173.178711
nyu21767,588015508748042385,35.51730066,-0.34225316,3325,41,3,345,GALAXY,17.590525,7.318722E-3,16.530252,4.710569E-3,17.433069,0.018098,16.418823,0.032262,816.610107,720.448792,9.657096,26.520947,2.746265,4.72,28.11362413,53.9,45.622868,48.893501,51.823967,8.22446,10.908682,11.362915,137.425919,139.29567,138.00444
nyu21743,588015508747911313,35.19668475,-0.40416658,3325,41,3,343,GALAXY,17.796143,6.683887E-3,16.912348,4.884229E-3,17.842108,0.014366,16.972486,0.014601,253.635788,527.805908,3.140628,9.088298,2.893783,4.72,28.11362436,53.9,14.217751,18.354649,23.993534,11.060767,15.140665,15.262117,168.302307,171.014694,157.329941
nyu21738,588015508747845892,35.09310051,-0.36933592,3325,41,3,342,GALAXY,17.115213,5.227716E-3,16.20776,3.799588E-3,17.219545,0.028091,16.324789,0.024297,570.231079,947.152771,4.105764,12.907957,3.143862,4.72,28.11362437,53.9,26.869999,32.288155,32.179596,10.79145,12.591772,14.433368,152.844894,155.388092,154.304794
nyu21736,588015508747845813,35.14408944,-0.35782056,3325,41,3,342,GALAXY,17.950663,8.299537E-3,17.007858,5.688167E-3,18.031294,0.018628,17.040295,0.010424,674.877441,1410.66235,5.889084,17.151051,2.912346,4.72,28.11362437,53.9,18.017015,25.673929,26.897644,11.11054,14.56301,15.704504,14.434584,14.76963,11.476027
nyu21734,588015508747845772,35.11059367,-0.31285711,3325,41,3,342,GALAXY,15.180014,2.555808E-3,14.296533,2.160054E-3,15.286053,0.011911,14.406177,0.013186,1083.66528,1106.16187,10.961906,35.61068,3.248584,4.72,28.11362437,53.9,56.942329,76.351097,84.259468,31.082491,35.862198,41.32304,6.950029,5.823741,5.26681
nyu21727,588015508747780274,34.93672656,-0.31853104,3325,41,3,341,GALAXY,17.652412,6.797392E-3,16.758396,4.8757E-3,17.744183,0.013024,16.863848,0.011192,1032.21411,886.602356,4.897142,14.451441,2.950995,4.72,28.11362436,53.9,15.379867,20.234987,22.418373,14.826612,17.920755,19.287756,66.183281,151.140961,18.480459
nyu21661,588015508746993828,33.11443157,-0.25631764,3325,41,3,329,GALAXY,17.424198,5.405948E-3,16.610058,4.268035E-3,17.492041,8.759244E-3,16.682631,7.003178E-3,1597.99731,653.173157,3.365092,9.527493,2.831273,4.72,28.11362492,53.9,15.700156,18.224226,18.148928,9.432987,11.186423,12.896644,93.133026,104.653122,105.418549
nyu21643,588015508746797352,32.74090209,-0.39012924,3325,41,3,326,GALAXY,17.370039,5.34148E-3,16.479494,4.056047E-3,17.472345,0.017264,16.58547,0.018691,381.962524,1340.99707,3.491052,10.092146,2.89086,4.72,28.11362512,53.9,19.298132,22.202894,22.388077,8.362337,10.978152,12.145058,105.468102,103.445587,108.956497
nyu21632,588015508746731538,32.49416632,-0.25349049,3325,41,3,325,GALAXY,16.661137,4.341695E-3,15.731419,3.254919E-3,16.713875,6.648303E-3,15.798786,4.417742E-3,1624.11719,459.105896,6.728791,20.867403,3.101211,4.72,28.1136251,53.9,24.9897,31.226994,35.823574,21.87999,27.166574,30.020788,101.610817,107.382141,117.695343
nyu21623,588015508746665988,32.36270162,-0.25273371,3325,41,3,324,GALAXY,16.531836,4.361358E-3,15.629752,3.300082E-3,16.736603,0.028958,15.800056,0.031929,1631.04333,625.041504,6.503672,20.249794,3.113594,4.72,28.11362515,53.9,37.102867,40.794598,39.866722,11.11371,14.261798,19.48893,107.275032,109.72403,112.538353
nyu2141,587731512616419440,43.13433274,-0.04783247,2738,40,3,206,GALAXY,15.988111,3.243313E-3,15.060542,2.621141E-3,16.123966,5.140217E-3,15.215549,4.227908E-3,1545.45898,1025.37488,7.930062,24.292685,3.063366,4.72,28.25968373,161.7,34.010925,48.085361,53.32201,29.836012,34.508217,41.101322,36.36409,43.682781,50.761616
nyu21330,588015508744110173,26.58707627,-0.3770161,3325,41,3,285,GALAXY,17.37475,5.815601E-3,16.550074,4.398201E-3,17.4788,8.579042E-3,16.664274,6.235671E-3,500.656494,1201.64648,4.520753,13.091084,2.895775,4.72,28.11362728,107.8,16.157173,19.264561,22.750261,14.744785,17.884516,20.400036,35.632576,145.804001,154.205444
nyu21261,588015508743454796,25.07278945,-0.29470361,3325,41,3,275,GALAXY,15.143006,2.570545E-3,14.256721,2.138165E-3,15.214347,6.329074E-3,14.331172,6.277243E-3,1248.70044,1046.06396,13.266219,43.431156,3.273815,4.72,28.11362787,107.8,56.733135,73.961662,80.562851,41.108307,49.939674,54.685463,16.775785,18.123507,18.785942
nyu21228,588015508743192611,24.46568543,-0.35978551,3325,41,3,271,GALAXY,16.972361,7.106036E-3,15.999742,4.593413E-3,16.804117,4.326672,16.064205,0.979503,656.596741,970.937439,12.289018,38.803093,3.157542,4.72,28.11362819,107.8,57.89362,59.240524,69.477707,11.010662,12.552856,14.230091,108.575897,110.491791,111.71283
nyu21217,588015508743127216,24.34910626,-0.31172212,3325,41,3,270,GALAXY,17.077341,5.3088E-3,16.293121,4.036731E-3,17.068769,8.052154E-3,16.280254,5.848306E-3,1093.43921,1272.1886,5.681681,17.57741,3.093699,4.72,28.1136282,107.8,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999
nyu21214,588015508743127203,24.32307146,-0.29972441,3325,41,3,270,GALAXY,17.402128,5.605235E-3,16.58811,4.331252E-3,17.465237,0.014674,16.656118,0.014042,1202.53149,1035.526,3.921662,11.488922,2.929606,4.72,28.1136282,107.8,18.714434,21.804522,24.693695,10.719055,13.777818,15.376916,88.033607,92.259003,77.770561
nyu21208,588015508743127170,24.24360927,-0.39958064,3325,41,3,270,GALAXY,15.891164,3.890533E-3,15.014083,3.018418E-3,16.109211,0.018705,15.251588,0.011828,294.861542,313.230103,12.346665,34.754864,2.814919,4.72,28.1136282,107.8,62.351105,68.867691,73.669182,16.331648,19.883366,22.039848,8.116294,7.984046,10.214521
nyu21195,588015508742996053,23.98393409,-0.33953027,3325,41,3,268,GALAXY,16.978369,4.766545E-3,16.114733,3.666632E-3,17.032558,0.012735,16.175562,0.012265,840.877563,674.653748,4.753644,15.888919,3.342472,4.72,28.11362826,107.8,25.002083,33.350868,36.449966,19.943306,25.47971,26.833275,122.439758,114.44986,123.110359
nyu21103,588015508741619857,20.8838513,-0.21338859,3325,41,3,247,GALAXY,16.506893,5.322857E-3,15.54065,4.032134E-3,16.746353,0.066319,15.845612,0.053603,1985.93359,1074.87268,8.509435,28.498816,3.349084,4.72,28.11362943,107.8,52.876545,53.964554,47.488342,11.40512,13.618311,15.836555,14.542881,14.792878,15.449843
nyu21068,588015508741292199,20.13178242,-0.26215801,3325,41,3,242,GALAXY,17.983603,8.742926E-3,17.053431,6.022847E-3,18.131647,0.017756,17.16218,0.012721,1542.44568,1043.14978,5.115888,14.518868,2.837996,4.72,28.11362968,107.8,17.74617,23.214548,27.263887,9.392277,12.210256,13.662568,83.571098,90.747284,89.75885
nyu21063,588015508741292168,20.09672195,-0.35238019,3325,41,3,242,GALAXY,17.069273,5.50597E-3,16.214821,4.209138E-3,17.062412,0.012348,16.277384,0.013428,722.254089,724.438843,6.890794,20.388916,2.958863,4.72,28.11362968,107.8,23.126127,28.496019,32.607449,19.093994,22.975719,24.710709,61.340462,63.924278,60.656239
nyu20996,588015508740702295,18.712238,-0.37624364,3325,41,3,233,GALAXY,17.30372,5.56276E-3,16.450737,4.244077E-3,17.358198,0.019697,16.519804,0.019639,505.195831,388.464294,4.483783,14.378633,3.206809,4.72,28.11363018,107.8,23.987297,26.705877,29.41777,12.789376,17.441765,20.298717,37.243919,44.032478,57.417385
nyu20976,588015508740505635,18.24970109,-0.25250068,3325,41,3,230,GALAXY,13.48606,1.739435E-3,12.649179,1.62859E-3,13.550484,7.477257E-3,12.711406,7.642311E-3,1630.01672,267.104248,15.313041,49.645977,3.242072,4.72,28.11363031,107.8,83.848213,98.571808,109.320107,72.215714,85.626823,92.025856,156.532928,157.6017,162.870911
nyu20975,588015508740505613,18.23926906,-0.34499709,3325,41,3,230,GALAXY,14.198768,2.050579E-3,13.363526,1.876688E-3,14.332927,0.027922,13.501193,0.026583,789.18634,172.285797,9.61907,30.430367,3.163546,4.72,28.11363031,107.8,115.082603,133.214249,149.356308,26.782532,31.817812,37.845524,16.787775,13.96715,16.528435
nyu20974,588015508740440128,18.20252278,-0.29019201,3325,41,3,229,GALAXY,13.895923,1.848242E-3,13.008151,1.688347E-3,13.991554,0.028062,13.122747,0.028697,1287.39539,1199.25879,12.66433,45.226479,3.57117,4.72,28.11363034,107.8,86.464485,98.730118,105.923882,62.137367,76.994171,82.85257,149.08847,149.977249,156.890747
nyu20968,588015508740374660,18.01126978,-0.2637528,3325,41,3,228,GALAXY,16.429663,4.431397E-3,15.601616,3.417803E-3,16.588781,7.171028E-3,15.786364,5.173317E-3,1527.5509,821.673767,8.453049,24.333191,2.878629,4.72,28.11363049,107.8,31.20756,34.184212,37.702248,23.675529,27.468475,30.54648,18.891937,16.189457,23.69001
nyu20967,588015508740374572,18.01924619,-0.24512185,3325,41,3,228,GALAXY,15.719541,3.621631E-3,14.836282,2.776359E-3,15.727283,7.756069E-3,14.832421,0.032395,1696.89087,894.177429,20.1915,56.172638,2.781994,4.72,28.11363049,107.8,60.733524,81.670059,86.006927,34.391438,43.321522,45.047562,55.145668,57.499451,53.271816
nyu20902,588015508740046924,17.21084037,-0.39804065,3325,41,3,223,GALAXY,18.7052,0.012,17.752329,8.348591E-3,18.706053,0.025052,17.839397,0.023743,306.963959,351.111389,3.799345,10.978841,2.889667,4.72,28.11363059,107.8,14.938823,18.581751,18.215366,6.467134,7.976221,9.274529,123.761101,127.857758,125.41729
nyu20808,588015508739588187,16.13964596,-0.32011551,3325,41,3,216,GALAXY,16.060766,3.780158E-3,15.187421,2.900758E-3,16.123512,7.39788E-3,15.232158,5.385689E-3,1014.67352,140.586533,11.82312,36.262547,3.067088,4.72,28.11363101,107.8,40.845924,50.296131,56.93449,27.795921,35.725418,40.826405,60.372452,50.402031,55.015648
nyu20791,588015508739457176,15.96259695,-0.25350754,3325,41,3,214,GALAXY,17.092552,5.354222E-3,16.253893,4.060494E-3,17.182144,8.848554E-3,16.323395,6.378206E-3,1619.99658,1253.12769,4.939205,15.217985,3.08106,4.72,28.11363119,107.8,21.45414,25.512455,26.303076,13.550738,15.496744,17.398829,63.890362,60.153065,52.288887
nyu20778,588015508739457138,15.87251629,-0.23459042,3325,41,3,214,GALAXY,17.223671,6.570086E-3,16.286915,5.185506E-3,17.379843,0.025346,16.465382,0.027521,1791.89819,434.258423,5.906869,17.173138,2.907317,4.72,28.11363119,107.8,26.621262,31.968147,34.363026,10.325875,12.228558,15.117826,61.949413,63.138607,68.187775
nyu20776,588015508739457130,15.86034861,-0.30444896,3325,41,3,214,GALAXY,17.260963,6.525009E-3,16.394678,4.732876E-3,17.420502,0.012524,16.569328,7.567578E-3,1156.90527,323.65625,6.513756,18.19124,2.792742,4.72,28.11363119,107.8,20.09193,23.229708,25.785244,18.728266,22.475273,24.020287,93.325531,103.827477,68.020302
nyu20772,588015508739391547,15.80255038,-0.2989581,3325,41,3,213,GALAXY,15.72046,3.198003E-3,14.891616,2.610853E-3,15.713459,0.507434,14.905743,0.414747,1206.8219,1159.20313,8.087057,27.876812,3.44709,4.72,28.11363126,107.8,43.672215,52.304443,55.4734,26.020472,29.170467,30.618538,81.602852,82.519058,88.325073
nyu20755,588015508739326033,15.6091185,-0.33758519,3325,41,3,212,GALAXY,16.799543,5.039519E-3,15.971507,3.830711E-3,16.882671,9.27833E-3,16.068041,6.952119E-3,855.78241,761.786438,7.654668,23.872189,3.118644,4.72,28.11363122,107.8,24.193718,29.470434,34.629463,22.709047,27.583286,30.046902,51.344154,59.668266,51.62645
nyu20722,588015508739129431,15.16470043,-0.39206388,3325,41,3,209,GALAXY,16.739918,4.657655E-3,15.939353,3.654561E-3,16.917097,0.010867,16.121883,8.972152E-3,360.697876,804.731445,5.5139,14.651476,2.657189,4.72,28.11363132,107.8,23.32869,28.853653,31.278561,14.96763,18.108994,19.608894,81.029335,85.591698,80.534294
nyu20706,588015508738998402,14.91216895,-0.24531785,3325,41,3,207,GALAXY,17.024092,0.014339,16.187054,7.591557E-3,17.005716,0.028928,16.167604,0.013688,1694.64941,1231.2002,9.85135,26.359173,2.675691,4.72,28.11363139,107.8,39.027714,42.522163,47.795246,12.087249,16.087618,16.197224,83.898399,86.034691,85.550179
nyu20697,588015508738998344,14.81284594,-0.22515381,3325,41,3,207,GALAXY,16.954426,4.804996E-3,16.125078,3.76695E-3,17.041842,0.011536,16.21319,0.010658,1877.93127,328.345673,4.597796,15.224815,3.311329,4.72,28.11363139,107.8,23.478693,33.185978,35.587399,19.560547,26.453232,28.832125,49.311226,56.225224,78.87767
nyu20676,588015508738867305,14.54352292,-0.35325023,3325,41,3,205,GALAXY,18.000669,7.55955E-3,17.115879,5.411289E-3,18.04635,0.011698,17.181629,8.201521E-3,713.496521,602.044373,3.476132,9.454453,2.71982,4.72,28.11363153,107.8,13.601675,15.592739,17.263529,9.801701,11.629927,16.81016,39.106453,28.503008,71.882813
nyu20674,588015508738867285,14.50193135,-0.29090582,3325,41,3,205,GALAXY,15.668818,3.075436E-3,14.84644,2.511247E-3,15.788254,7.321388E-3,14.974915,7.078318E-3,1280.22375,223.91687,8.857225,28.736105,3.244369,4.72,28.11363153,107.8,42.303532,52.724239,57.452652,28.462126,35.393108,40.151272,161.068619,164.150909,165.659241
nyu20671,588015508738801779,14.46540329,-0.22960417,3325,41,3,204,GALAXY,16.858789,4.752257E-3,15.996467,3.634377E-3,16.804422,8.373113E-3,15.961956,6.403781E-3,1837.37085,1252.83716,6.902742,21.779585,3.155208,4.72,28.1136315,107.8,29.116766,35.080597,38.173534,19.0539,21.16696,23.081837,64.391617,62.241096,57.681801
nyu20638,588015508738670734,14.09448115,-0.34517695,3325,41,3,202,GALAXY,16.219927,3.823915E-3,15.385087,3.038073E-3,16.380814,0.03064,15.542562,0.025343,786.876648,602.856445,7.306099,21.475887,2.939446,4.72,28.11363165,107.8,37.494194,39.327248,44.90638,14.096053,18.711195,21.729511,93.612526,89.860199,94.511139
nyu20636,588015508738670640,14.07287136,-0.36966701,3325,41,3,202,GALAXY,16.641567,4.033381E-3,15.857563,3.29787E-3,16.725534,0.045484,15.922282,0.042736,564.274109,406.417725,3.231971,8.987157,2.780705,4.72,28.11363165,107.8,33.312511,41.408951,47.321255,16.628296,20.528536,26.456457,163.158646,163.860001,178.510468
nyu20578,588015508738211950,13.01128098,-0.27247513,3325,41,3,195,GALAXY,16.458263,4.045467E-3,15.588013,3.166573E-3,16.699953,0.043571,15.810729,0.044735,1447.66614,283.363617,5.270771,15.770571,2.99208,4.72,28.11363189,107.8,44.84325,51.447758,52.758099,11.286672,14.442441,15.709597,34.579708,34.83831,34.92115
nyu20445,588015508737032354,10.40702899,-0.33052091,3325,41,3,177,GALAXY,16.85533,5.360936E-3,15.97659,3.945644E-3,17.006062,0.014436,16.176315,0.012327,919.565674,1107.86523,6.967349,20.814915,2.987494,4.72,28.11363242,107.8,25.463928,32.355221,35.825207,17.876394,23.179848,25.835419,21.344456,37.914207,43.914276
nyu20313,588015508736114810,8.25844489,-0.27560867,3325,41,3,163,GALAXY,17.394485,6.367447E-3,16.535349,4.772745E-3,17.507801,0.010021,16.669361,7.229056E-3,1418.60559,630.066406,4.758596,14.081806,2.959235,4.72,28.11363264,107.8,17.192886,22.531317,26.467358,15.251399,17.752733,20.896345,147.1185,163.087906,168.355286
nyu20265,588015508735721643,7.43867389,-0.33979282,3325,41,3,157,GALAXY,17.312243,5.358438E-3,16.510868,0.01649,17.314474,7.507724E-3,16.427732,6.510774E-3,834.98645,1343.75952,3.621644,9.969777,2.752831,4.72,28.1136329,107.8,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999,-9999
nyu20261,588015508735721609,7.39829758,-0.23517257,3325,41,3,157,GALAXY,15.816675,3.392087E-3,14.923702,2.635472E-3,15.894923,5.943038E-3,15.007115,4.862607E-3,1785.93176,976.686523,11.292052,36.447124,3.227679,4.72,28.1136329,107.8,40.826653,50.332275,56.874268,33.089031,44.265137,48.320061,42.264805,24.361551,35.988754
nyu20250,588015508735721571,7.37056188,-0.2490765,3325,41,3,157,GALAXY,17.646076,7.351965E-3,16.787367,5.288473E-3,17.775543,0.01355,16.929174,9.701601E-3,1659.5459,724.544983,5.083243,14.405539,2.833927,4.72,28.1136329,107.8,19.561577,21.809771,25.73987,10.696599,13.682687,13.304613,60.579468,58.007362,60.936321
nyu20247,588015508735721577,7.36842393,-0.21261629,3325,41,3,157,GALAXY,15.115294,3.008887E-3,14.204685,2.362561E-3,15.475272,5.171563E-3,14.558451,3.960062E-3,1990.86951,705.112183,15.470867,43.084026,2.784849,4.72,28.1136329,107.8,43.965412,-9999,-9999,40.143711,-9999,-9999,103.336067,-9999,-9999
nyu20243,588015508735721530,7.30784175,-0.21872428,3325,41,3,157,GALAXY,17.164333,6.717806E-3,16.346632,4.930545E-3,17.363697,0.013791,16.522781,9.729747E-3,1935.31848,154.366867,7.908847,22.818228,2.885152,4.72,28.1136329,107.8,20.992756,26.345053,31.199528,17.401756,22.86438,23.918314,68.588661,70.541893,58.059074
nyu20241,588015508735656125,7.28505391,-0.2239673,3325,41,3,156,GALAXY,17.293797,5.615748E-3,16.37711,4.107269E-3,17.381367,0.024126,16.47385,0.025046,1887.71802,1308.18286,4.582211,13.962165,3.047036,4.72,28.11363289,107.8,24.382996,26.003639,30.068247,10.714411,15.894981,16.684664,95.503746,92.887131,93.294823
nyu20209,588015508735590522,7.08043989,-0.24633178,3325,41,3,155,GALAXY,15.591572,2.972859E-3,14.669309,2.37045E-3,15.653347,9.373001E-3,14.735196,9.886794E-3,1684.34106,809.149353,9.632977,32.096256,3.331915,4.72,28.11363293,107.8,38.804867,50.548374,56.189636,36.165379,45.049454,49.804829,157.469467,158.625397,159.912827
nyu20184,588015508735328332,6.42267727,-0.37480222,3325,41,3,151,GALAXY,17.014568,5.368848E-3,16.244217,4.12361E-3,17.09223,0.011034,16.311886,8.812891E-3,516.560608,273.523315,6.333718,20.298082,3.204766,4.72,28.11363307,107.8,24.921091,31.528828,35.134632,16.529308,20.450287,23.595779,35.055653,38.496109,36.012283
nyu20182,588015508735262802,6.36740677,-0.22768468,3325,41,3,150,GALAXY,17.238041,6.018842E-3,16.343092,4.432264E-3,17.221077,0.023443,16.333277,0.033191,1853.81738,1132.03821,7.694108,21.242744,2.760911,4.72,28.11363311,107.8,33.497471,40.509579,37.823257,8.901435,10.202872,12.932679,67.930496,68.816315,63.751129
nyu20056,588015508734345336,4.23282133,-0.39526822,3325,41,3,136,GALAXY,17.233425,0.020195,16.435337,4.307376E-3,17.358961,0.056094,16.508308,0.050057,330.899597,780.857117,4.728149,15.793224,3.340255,4.72,28.1136334,107.8,27.520472,34.016846,35.564125,12.647172,16.395021,21.85656,99.194199,97.710388,97.067482
nyu20054,588015508734345324,4.21552753,-0.21861908,3325,41,3,136,GALAXY,16.896616,6.011412E-3,16.045523,5.79007E-3,16.987537,0.026218,16.136036,0.022536,1936.50977,623.617432,4.483599,14.204843,3.168178,4.72,28.1136334,107.8,22.295774,26.822233,28.730167,16.682959,21.333456,26.219896,23.95734,33.7514,33.583885
nyu20050,588015508734345283,4.156424,-0.39056559,3325,41,3,136,GALAXY,17.240736,5.816604E-3,16.354694,4.186109E-3,17.37125,0.027382,16.499294,0.023827,373.678864,86.340469,4.06079,12.010647,2.957712,4.72,28.1136334,107.8,25.330576,31.297602,33.938927,10.336658,12.680426,12.943223,84.078499,89.421143,89.260727
nyu20023,588015508734148696,3.84974097,-0.40238843,3325,41,3,133,GALAXY,16.345455,4.495603E-3,15.466351,3.277383E-3,16.451628,0.474336,15.594453,7.05144E-3,266.072235,1381.4353,9.859246,29.994915,3.042313,4.72,28.11363356,107.8,37.491913,44.204319,49.28521,23.519169,29.594557,32.710953,162.222321,154.578644,157.959457
nyu19952,588015508733689948,2.66413761,-0.22852807,3325,41,3,126,GALAXY,18.352037,9.999869E-3,17.463453,7.086894E-3,18.340021,0.018044,17.502815,0.014928,1846.62476,130.472778,4.099847,12.37386,3.018127,4.72,28.11363357,107.8,13.914544,17.347397,19.541687,10.748845,13.269058,16.797794,65.490364,96.462196,96.479248
nyu19930,588015508733493426,2.32548236,-0.3255995,3325,41,3,123,GALAXY,17.546663,7.193531E-3,16.612055,5.465676E-3,17.569408,0.013137,16.629269,9.241389E-3,964.132935,1134.86377,5.696819,17.864923,3.135947,4.72,28.11363365,107.8,19.407991,22.730738,26.810389,16.717245,20.794804,22.751768,16.812124,17.52202,10.207341
nyu19929,588015508733558803,2.37670019,-0.29308246,3325,41,3,124,GALAXY,17.84985,8.270188E-3,16.935791,5.841538E-3,17.90781,0.019069,16.993427,0.016064,1259.74585,239.406067,5.629297,17.970945,3.192396,4.72,28.1136336,107.8,18.296526,25.621544,25.601519,12.362434,16.590164,18.647617,55.825657,65.607101,74.534973
nyu19909,588015508733427846,2.12333955,-0.33579389,3325,41,3,122,GALAXY,18.169048,9.178625E-3,17.163982,5.82007E-3,18.283291,0.029104,17.279104,0.023099,871.500366,658.324646,3.332008,9.823154,2.948118,4.72,28.11363369,107.8,17.987141,19.627354,20.097322,6.650086,8.642477,9.840823,4.374227,4.526136,6.503007
nyu19902,588015508733362296,1.94090404,-0.26404372,3325,41,3,121,GALAXY,17.761791,7.924766E-3,16.774305,5.040083E-3,17.870115,0.016329,16.898224,0.013056,1523.73987,360.844299,3.63194,10.489363,2.888088,4.72,28.11363374,107.8,19.13035,24.653589,22.009594,8.213029,9.620212,12.561396,54.68623,57.668625,57.38538
nyu19897,588015508733296729,1.90117301,-0.23202694,3325,41,3,120,GALAXY,16.351322,3.937107E-3,15.404886,3.01325E-3,16.446667,0.011217,15.517422,0.011032,1814.75464,1360.63928,6.589211,21.199863,3.21736,4.72,28.11363369,107.8,32.737301,41.668564,46.454723,20.775055,26.913214,30.797956,162.580368,161.24617,160.490585
nyu19885,588015508733231241,1.68808748,-0.33828491,3325,41,3,119,GALAXY,17.139111,5.45668E-3,16.186333,3.943405E-3,17.24012,8.986449E-3,16.313559,6.790108E-3,848.776123,784.564026,5.048427,15.603095,3.090684,4.72,28.11363383,107.8,19.963518,26.24493,32.032215,16.959541,22.210558,24.34936,165.608414,177.890442,4.898898
nyu1980,587731512615698478,41.43616336,-0.01691546,2738,40,3,195,GALAXY,17.054651,4.793698E-3,16.185579,3.785281E-3,17.136078,7.658763E-3,16.278269,5.845901E-3,1826.71594,557.638184,5.300514,14.730492,2.779069,4.72,28.25968366,161.7,20.662018,24.911337,28.092949,14.074184,16.456736,16.919165,40.949043,42.647995,34.561993
nyu19729,588015508732117036,359.12776904,-0.39079503,3325,41,3,102,GALAXY,15.860312,3.166334E-3,15.020056,2.62042E-3,15.879968,5.315739E-3,15.056836,4.81012E-3,371.554291,646.407471,7.450145,24.421307,3.277964,4.72,28.11363393,107.8,36.921921,42.214539,44.246986,23.914518,26.62183,29.336079,179.32547,179.069016,1.732722
nyu19722,588015508732116995,359.07839137,-0.30562196,3325,41,3,102,GALAXY,14.097827,1.938875E-3,13.236152,1.777382E-3,14.187687,0.010409,13.335463,9.275876E-3,1145.73279,197.532684,10.53367,34.84544,3.308006,4.72,28.11363393,107.8,70.973389,80.132996,91.206779,54.222404,64.698471,70.272766,3.237669,5.687222,4.421282
nyu19564,588015508730740770,356.06388942,-0.28309432,3325,41,3,81,GALAXY,16.387308,4.005377E-3,15.470612,3.057076E-3,16.300776,0.086916,15.451712,0.010945,1351.1217,1374.28796,7.515462,27.842566,3.704704,4.72,28.11363389,107.8,45.334362,50.149082,53.314083,21.252151,23.457355,26.265121,152.281052,150.43895,154.14444
nyu19550,588015508730609848,355.7356333,-0.23235649,3325,41,3,79,GALAXY,17.402662,5.849443E-3,16.484257,4.290383E-3,17.486641,9.391243E-3,16.606928,6.559433E-3,1812.3302,1112.1687,3.918653,10.530951,2.68739,4.72,28.11363386,107.8,17.829607,20.491405,23.197327,11.213988,14.19082,17.05608,168.419846,151.23204,161.272446
nyu19530,588015508730347655,355.13089304,-0.37740061,3325,41,3,75,GALAXY,17.120874,6.702435E-3,16.177031,4.383197E-3,17.300123,0.013116,16.369267,0.013294,493.497437,1058.52917,5.857961,16.00799,2.73269,4.72,28.113634,107.8,27.772432,31.635994,31.93693,10.123604,11.506932,12.421004,103.95536,104.759087,107.773277
nyu19518,588015508730216591,354.84472614,-0.32013411,3325,41,3,73,GALAXY,17.731773,8.13469E-3,16.831877,5.711712E-3,17.85071,0.016067,16.96727,0.011834,1014.17218,1179.15552,5.557934,16.429216,2.955993,4.72,28.11363404,107.8,16.176167,22.560472,24.352959,14.149848,16.925203,21.614202,115.385742,122.251228,118.356117
nyu19517,588015508730216585,354.82399404,-0.24963698,3325,41,3,73,GALAXY,17.397371,6.570921E-3,16.520241,4.737096E-3,17.277653,0.012669,16.427868,0.010512,1654.99036,990.692261,7.48012,19.647591,2.626641,4.72,28.11363404,107.8,20.959223,30.239799,33.203033,15.914651,19.42701,21.239307,40.335289,58.164967,54.412865
nyu19457,588015508729692263,353.54721829,-0.39824539,3325,41,3,65,GALAXY,17.261475,6.251615E-3,16.432318,4.609535E-3,17.322697,0.011749,16.503433,8.376101E-3,304.167206,271.597107,6.205729,18.542303,2.987933,4.72,28.11363398,107.8,19.698925,23.520391,25.105988,18.574892,22.476231,22.909658,16.427855,56.13813,41.933159
nyu19375,588015508728774666,351.45041317,-0.36814611,3325,41,3,51,GALAXY,16.681501,5.799041E-3,15.801601,3.977294E-3,16.61224,1.859856,15.743747,1.651191,577.893982,264.152618,10.213168,32.548656,3.186931,4.72,28.11363402,107.8,32.790009,36.03231,44.080654,24.109282,35.220257,38.566032,162.554108,9.105911,95.613358
nyu19343,588015508728512585,350.83759331,-0.35043306,3325,41,3,47,GALAXY,18.643192,0.011987,17.764074,8.22164E-3,18.700653,0.022593,17.825258,0.015322,738.648987,137.003326,3.767135,10.298573,2.733794,4.72,28.11363405,107.8,11.418763,14.760838,16.901693,9.206462,10.360289,9.567313,55.213062,56.918278,65.328629
nyu1931,588015509286551691,39.29540676,0.01219203,3325,41,4,370,GALAXY,16.819635,4.43239E-3,15.972481,3.560653E-3,16.919735,0.03452,16.071629,0.037476,222.670135,1039.02759,5.192676,16.841415,3.243302,4.76,28.09138893,53.9,34.26741,41.391712,41.860313,8.63721,10.796588,11.781794,74.944458,75.997704,78.76152
nyu1811,588015509275607136,14.21622134,5.83254E-3,3325,41,4,203,GALAXY,15.36031,2.825702E-3,14.539623,2.354844E-3,15.48379,4.32315E-3,14.640044,3.037918E-3,161.695435,348.494598,12.154302,34.7519,2.859226,4.76,28.09139774,107.8,47.206596,54.29052,56.124474,31.901155,37.526226,41.856979,9.903439,5.120599,6.425864
nyu1773,588015509272657976,7.45774656,0.01420114,3325,41,4,158,GALAXY,17.063766,5.80379E-3,16.14537,5.214381E-3,17.139528,0.014491,16.224953,0.01547,236.907364,156.059113,5.083685,15.995996,3.146535,4.76,28.0913989,107.8,25.316877,28.401505,30.248798,11.103237,15.021862,15.17747,58.042984,57.304218,58.463631
nyu1765,587731186207162530,7.38756785,-0.08745032,2662,40,3,332,GALAXY,16.365898,3.913184E-3,15.426884,3.017714E-3,16.481913,6.354742E-3,15.572004,4.729031E-3,1182.35632,414.659912,8.774665,26.140457,2.979083,4.72,28.26814242,161.7,32.497189,46.447567,50.705784,23.819124,28.642971,30.501553,136.819824,140.873672,137.706314
nyu1761,587731186207162478,7.35803054,-0.18461163,2662,40,3,332,GALAXY,17.316496,5.466689E-3,16.464773,4.257014E-3,17.397392,0.011419,16.565107,9.843088E-3,299.160156,146.246307,5.385735,15.709454,2.916863,4.72,28.26814242,161.7,17.403103,22.633093,26.397892,17.119841,18.955072,23.534321,39.586994,40.324566,71.932167
nyu1758,587731186207097032,7.34237013,-0.1390501,2662,40,3,331,GALAXY,17.020649,4.533884E-3,16.139139,3.563215E-3,17.107016,6.643308E-3,16.243656,5.518938E-3,713.335144,1364.83154,4.759951,14.134074,2.969374,4.72,28.26814231,161.7,18.92457,25.980711,30.934511,18.545759,23.319014,25.256186,87.633163,22.232307,35.839474
nyu1752,587731186207097010,7.32227384,-4.16353E-3,2662,40,3,331,GALAXY,16.753593,4.025972E-3,15.917498,3.297118E-3,16.801098,0.012547,15.987797,0.011564,1939.53235,1182.09656,5.053192,15.018372,2.972057,4.72,28.26814231,161.7,21.493429,25.620918,29.702181,19.471432,24.248064,27.193056,154.506607,130.100967,130.650436
nyu1750,587731186207097000,7.31227674,-0.14517742,2662,40,3,331,GALAXY,17.831568,6.777845E-3,16.980547,5.240291E-3,17.821966,0.016289,17.001692,0.01376,657.644165,1091.29749,4.791253,15.544888,3.24443,4.72,28.26814231,161.7,19.986031,24.383347,28.84425,12.498629,16.149647,16.406321,51.444088,46.436104,44.725632
nyu1749,587731186207096991,7.31129452,-0.18850046,2662,40,3,331,GALAXY,16.19593,3.637272E-3,15.292707,2.862859E-3,16.249071,7.235778E-3,15.374201,5.997394E-3,263.883301,1082.40405,10.092394,32.932758,3.263127,4.72,28.26814231,161.7,34.978371,44.428032,51.477802,29.381992,37.021122,40.317211,125.641708,120.535713,117.836723
nyu1747,587731186207096977,7.29555204,-0.18805737,2662,40,3,331,GALAXY,17.686926,6.118553E-3,16.799295,4.757591E-3,17.737688,9.716283E-3,16.87837,7.704147E-3,267.914551,939.309143,3.45736,9.242943,2.673411,4.72,28.26814231,161.7,15.592694,18.905275,19.49576,9.530541,11.159574,13.37144,24.928024,28.398031,22.707235
nyu1746,587731186207096970,7.28990102,-0.16870649,2662,40,3,331,GALAXY,17.613878,7.563831E-3,16.799494,5.924213E-3,17.826511,0.015441,17.019707,0.012566,443.778534,887.928894,6.60828,17.418261,2.635824,4.72,28.26814231,161.7,18.058811,21.88414,22.078054,13.965186,17.375727,17.393469,166.427353,157.636093,163.696533
nyu1733,587731186207096950,7.26566835,-0.16059363,2662,40,3,331,GALAXY,17.243187,5.200007E-3,16.391121,4.081117E-3,17.350521,8.757792E-3,16.495197,6.837066E-3,517.525085,667.654053,5.354622,14.623805,2.731062,4.72,28.26814231,161.7,20.565317,23.44762,28.23407,12.374784,16.41696,16.358412,167.725464,165.552505,159.218277
nyu1731,587731186207096926,7.23750473,-0.0897726,2662,40,3,331,GALAXY,17.02475,5.382796E-3,16.220028,4.291826E-3,17.21487,9.369463E-3,16.420895,7.56182E-3,1161.37585,411.597748,7.145367,19.292044,2.699937,4.72,28.26814231,161.7,22.699175,25.590776,29.117134,16.889128,21.151714,22.766842,13.966818,7.161174,20.576115
nyu1644,587731186206507141,5.9161548,-0.12085794,2662,40,3,322,GALAXY,15.532687,2.996556E-3,14.573655,2.395336E-3,15.621506,7.092923E-3,14.693493,6.361997E-3,878.751953,649.254822,15.976659,47.003048,2.941983,4.72,28.26814209,161.7,45.275196,57.152756,64.231133,42.833923,54.438648,57.914833,52.648914,40.599224,26.291573
nyu161,588015508202782820,16.3395166,-0.83812555,3325,41,2,217,GALAXY,16.736362,4.732647E-3,15.728703,3.420269E-3,16.741518,0.042259,15.777729,0.033738,120.082497,596.166748,7.405425,25.099354,3.38932,4.6,28.08874705,107.8,40.271965,43.783207,48.658173,11.839512,14.927343,16.587221,83.580574,82.9403,87.353706
nyu1585,588015509270954123,3.63289393,8.28712E-3,3325,41,4,132,GALAXY,15.487082,2.943538E-3,14.585556,2.386257E-3,15.47256,5.231454E-3,14.567236,3.934555E-3,183.398193,771.320068,14.499325,47.743401,3.292802,4.76,28.09139958,107.8,51.666546,66.41082,71.452446,41.060257,50.562847,55.612679,162.670273,166.619507,161.43927
nyu15748,588015508218904634,53.23858074,-0.70414471,3325,41,2,463,GALAXY,16.802635,4.378162E-3,15.794838,3.194294E-3,16.881332,6.394944E-3,15.892307,4.8211E-3,1339.11902,1212.76831,4.713013,15.021278,3.187192,4.6,28.08873227,53.9,22.739658,29.780329,34.291443,20.419548,25.994936,32.28759,123.518204,112.730766,115.328987
nyu15548,588015508218249365,51.67999628,-0.76943989,3325,41,2,453,GALAXY,15.423241,2.907292E-3,14.487823,2.282166E-3,15.526152,5.598412E-3,14.609555,4.488664E-3,746.602295,655.291931,12.996288,40.810139,3.140138,4.6,28.0887329,53.9,47.886337,60.536091,72.022385,37.792183,47.800262,54.949291,87.913986,99.437225,91.680367
nyu15540,588015508218249317,51.64415381,-0.6477809,3325,41,2,453,GALAXY,15.720579,3.44798E-3,14.759012,2.595854E-3,15.804486,7.265335E-3,14.860122,3.530479E-3,1852.35583,329.167908,16.156923,41.077984,2.542439,4.6,28.0887329,53.9,58.973389,66.921875,70.492035,26.265759,31.807308,36.505211,74.081978,69.910767,70.643112
nyu15537,588015508218183934,51.59680619,-0.6476395,3325,41,2,452,GALAXY,16.182024,3.56166E-3,15.190365,2.710748E-3,16.227949,5.550826E-3,15.257859,3.97496E-3,1853.58081,1259.87109,7.584815,23.537233,3.103205,4.6,28.08873299,53.9,31.917021,38.677139,43.674747,23.863825,29.205811,34.453903,2.162851,175.450882,169.157074
nyu15534,588015508218183922,51.58487007,-0.68340825,3325,41,2,452,GALAXY,17.093435,5.844476E-3,16.174307,4.096464E-3,17.274078,0.010907,16.3557,9.46143E-3,1528.5376,1151.46094,5.31249,15.363304,2.891921,4.6,28.08873299,53.9,23.78994,28.849688,32.255318,12.605826,16.935432,18.457172,122.669609,122.025177,122.921898
nyu15523,588015508218183867,51.51018518,-0.77200461,3325,41,2,452,GALAXY,16.760399,5.25153E-3,15.855435,3.770976E-3,16.942472,9.80287E-3,16.035002,6.21033E-3,723.205505,472.823975,8.817366,25.40007,2.880687,4.6,28.08873299,53.9,29.497339,36.291019,39.675083,19.143196,24.34067,28.054728,153.793655,151.03537,151.171188
nyu15468,588015508217921639,50.89015455,-0.69683579,3325,41,2,448,GALAXY,17.942686,8.213342E-3,17.198502,0.021275,17.943491,0.018818,17.071062,0.016706,1406.53125,280.420258,4.179267,11.523246,2.757241,4.6,28.08873331,53.9,19.34388,21.682388,23.132732,7.611952,9.996311,9.99868,17.698483,13.512001,17.138676
nyu15459,588015508217790552,50.71231026,-0.63698273,3325,41,2,446,GALAXY,18.214567,9.54783E-3,17.195253,5.830056E-3,18.262047,1.203291,17.209743,0.629473,1950.36902,1385.72205,3.336071,10.230861,3.06674,4.6,28.0887335,53.9,15.361172,18.584204,21.831846,7.636371,10.577085,10.778194,171.475693,170.072266,175.635818
nyu1537,588015509267218567,355.10051349,2.27418E-3,3325,41,4,75,GALAXY,16.616306,4.771923E-3,15.680124,3.485903E-3,16.670742,9.348317E-3,15.706037,5.93994E-3,129.033051,782.333496,9.182325,28.007418,3.050144,4.76,28.09139999,107.8,27.846022,35.532276,39.327465,24.359955,31.592838,33.508816,121.151466,115.732643,130.913055
nyu15235,588015508216873146,48.47629068,-0.80207064,3325,41,2,432,GALAXY,16.528212,5.269561E-3,15.666873,4.70717E-3,16.628273,8.109762E-3,15.770153,8.152173E-3,449.971954,113.484734,5.856545,18.217089,3.110552,4.6,28.08873469,53.9,27.720657,33.103539,35.838875,16.258518,19.745924,22.638197,3.992054,7.033448,5.760822
nyu15121,588015508216283347,47.25370279,-0.740534,3325,41,2,423,GALAXY,18.888887,0.012032,17.995882,8.213915E-3,18.983963,0.021507,18.104002,0.023826,1009.25043,1249.1062,2.889776,7.776354,2.690988,4.6,28.08873522,53.9,10.34684,12.671227,14.544444,6.567132,10.300404,9.356587,162.28978,0.927535,173.305832
nyu15114,588015508216283192,47.20255779,-0.64887109,3325,41,2,423,GALAXY,16.78866,4.978705E-3,15.894026,3.629349E-3,16.96826,9.783948E-3,16.094112,8.563872E-3,1842.34668,783.952209,6.737676,20.381969,3.025074,4.6,28.08873522,53.9,26.169018,37.312355,33.498005,19.289356,22.846834,22.637272,160.452286,164.252655,156.48233
nyu15039,588015508216086589,46.71842448,-0.79449236,3325,41,2,420,GALAXY,13.216734,1.702498E-3,12.396106,1.600099E-3,13.253504,0.026786,12.419561,0.023316,519.118591,466.205048,19.827465,64.172813,3.236562,4.6,28.08873541,53.9,116.274521,135.90303,133.650543,80.787689,91.685165,130.699066,151.672852,157.4664,66.684418
nyu14987,588015508215824498,46.13659364,-0.68131359,3325,41,2,416,GALAXY,16.657698,4.687663E-3,15.749144,3.430641E-3,16.827475,6.799803E-3,15.932271,5.122901E-3,1547.44629,620.808594,5.644786,15.608903,2.765189,4.6,28.08873573,53.9,22.6073,27.648815,30.237856,17.793205,23.107874,28.141115,20.594973,179.105469,143.323624
nyu14977,588015508215759024,46.00214204,-0.76000527,3325,41,2,415,GALAXY,17.028416,6.231001E-3,16.026081,4.159715E-3,17.230631,0.03269,16.28089,0.0136,832.156189,759.726196,7.820989,22.07379,2.822378,4.6,28.08873579,53.9,25.127386,34.417126,40.535309,17.256012,20.313078,23.373957,36.288017,37.606686,35.038498
nyu14885,588015508215234642,44.73560661,-0.76610347,3325,41,2,407,GALAXY,17.426893,7.477229E-3,16.464226,5.287903E-3,17.64571,0.046998,16.700157,0.049089,776.785339,134.295212,5.603218,16.778603,2.994458,4.6,28.08873626,53.9,27.974567,33.679485,36.266041,9.316746,11.637583,13.111241,113.137329,112.644974,115.02549
nyu14774,588015508214382729,42.89633369,-0.73376428,3325,41,2,394,GALAXY,14.68425,2.378688E-3,13.888078,2.047682E-3,14.838175,3.418667E-3,14.050146,3.080955E-3,1070.6886,1107.31189,16.774685,43.210575,2.57594,4.6,28.08873722,53.9,60.819019,74.84848,79.206116,44.048119,50.229336,55.14983,11.936217,12.824919,10.732538
nyu14631,588015508213923993,41.76263608,-0.64797474,3325,41,2,387,GALAXY,16.868893,4.644318E-3,15.985161,3.545655E-3,16.950094,0.013978,16.08655,0.012374,1850.0741,328.85257,5.583679,16.898563,3.026421,4.6,28.08873782,53.9,24.583639,28.272385,33.783375,16.004202,19.688879,23.322096,156.204605,155.537994,147.416824
nyu14605,588015508213858345,41.63936221,-0.65423485,3325,41,2,386,GALAXY,15.653523,2.910999E-3,14.7603,2.371751E-3,15.76708,0.011232,14.884915,0.011322,1793.13477,569.321167,7.33045,23.836205,3.25167,4.6,28.08873792,53.9,37.82346,47.357788,53.658955,31.047676,40.477215,44.671978,66.221649,68.888428,62.350502
nyu14596,588015508213792995,41.52104553,-0.65094767,3325,41,2,385,GALAXY,16.818985,4.415222E-3,15.980776,3.446232E-3,16.907442,7.107146E-3,16.084755,5.832341E-3,1822.82788,854.781067,4.971925,14.51996,2.92039,4.6,28.08873805,53.9,22.074661,30.269136,32.270634,16.967041,19.912498,22.184593,130.081421,125.293182,131.776184
nyu14545,588015508213727352,41.30737479,-0.74612261,3325,41,2,384,GALAXY,15.771155,3.129419E-3,14.827036,2.44759E-3,15.790071,8.831545E-3,14.866538,9.696673E-3,957.603394,273.686066,10.314567,35.212063,3.413819,4.6,28.08873817,53.9,45.037243,62.101864,67.999962,30.987349,39.96833,44.751614,61.902817,64.362518,66.870781
nyu145,588015508202061976,14.74301845,-0.83569725,3325,41,2,206,GALAXY,17.217375,5.165823E-3,16.407822,4.08544E-3,17.267109,0.013441,16.46347,0.013071,141.971054,1054.37927,3.198951,8.971774,2.804599,4.6,28.08874745,107.8,17.582222,20.781561,26.445419,10.24811,14.354757,15.582965,81.39608,80.153351,87.955612
nyu14476,588015508213334168,40.4267191,-0.73082261,3325,41,2,378,GALAXY,16.761385,4.417876E-3,15.933356,3.478012E-3,16.831532,0.021189,16.027866,0.076866,1097.67725,434.267883,5.372752,16.974651,3.159396,4.6,28.08873832,53.9,26.248959,33.271908,36.922119,18.149019,22.927319,29.269577,111.732697,108.271423,110.787521
nyu14444,588015508212875490,39.43359923,-0.72577851,3325,41,2,371,GALAXY,16.250854,3.588017E-3,15.414539,2.886811E-3,16.379549,0.01122,15.539865,0.010269,1143.52673,933.709045,5.690685,16.742571,2.942101,4.6,28.08873869,53.9,28.58375,34.3741,38.011742,17.358969,20.696579,23.187187,15.55875,15.061501,18.586863
nyu14356,588015508212088944,37.65278293,-0.8236977,3325,41,2,359,GALAXY,16.463215,3.701612E-3,15.6161,3.026529E-3,16.549818,0.01912,15.705841,0.019616,253.833069,1077.98608,3.685823,11.296255,3.064785,4.6,28.08873928,53.9,24.850569,29.607668,32.943256,13.567455,19.411068,22.764389,10.1796,12.563242,5.482773
nyu14349,588015508212088843,37.54519754,-0.64825832,3325,41,2,359,GALAXY,15.487574,2.898271E-3,14.598148,2.329637E-3,15.465874,0.078324,14.522591,0.068173,1848.49805,99.549652,16.14444,52.287922,3.238757,4.6,28.08873928,53.9,61.532619,-9999,-9999,42.545856,-9999,-9999,8.433246,-9999,-9999
nyu14348,588015508212023489,37.53281736,-0.70891826,3325,41,2,358,GALAXY,17.170813,5.68958E-3,16.239296,4.014589E-3,17.306681,0.119965,16.355799,0.13795,1297.151,1348.14783,5.930832,19.37796,3.267325,4.6,28.08873932,53.9,23.129969,29.900082,32.803638,18.515848,27.964804,30.54952,92.166229,95.784065,77.862839
nyu14347,588015508212023482,37.5298263,-0.72311464,3325,41,2,358,GALAXY,16.478222,4.043322E-3,15.563339,3.055268E-3,16.571287,0.012981,15.650423,0.012345,1168.10571,1320.98828,6.728238,22.44396,3.335786,4.6,28.08873932,53.9,33.04747,40.718571,43.500397,19.840471,26.145685,29.54781,8.365756,11.032087,6.695139
nyu14344,588015508212023471,37.5063091,-0.64844455,3325,41,2,358,GALAXY,17.263529,5.287754E-3,16.402349,3.997904E-3,17.346386,7.314476E-3,16.492035,5.174407E-3,1846.76147,1107.02722,4.032479,11.885513,2.947445,4.6,28.08873932,53.9,16.724033,20.961823,23.076488,14.981798,17.568254,21.194324,45.522636,61.099487,79.716415
nyu14331,588015508211892421,37.21883379,-0.7677685,3325,41,2,356,GALAXY,17.370386,5.620977E-3,16.491455,4.170694E-3,17.465509,0.012622,16.598326,0.011284,762.090759,1215.88489,4.033572,12.133985,3.008248,4.6,28.08873943,53.9,19.988707,24.775183,27.447477,11.020296,12.646599,13.792205,153.069336,145.129074,150.986801
nyu14289,588015508211564699,36.48388953,-0.81191918,3325,41,2,351,GALAXY,17.536171,6.279252E-3,16.657995,4.534617E-3,17.597542,0.010983,16.674099,6.924567E-3,361.014893,1340.07739,4.767295,14.519786,3.045707,4.6,28.08873967,53.9,17.190731,20.940825,22.96834,14.039317,17.485748,18.38171,143.319809,132.219849,114.387451
nyu14274,588015508211433733,36.17409234,-0.63177465,3325,41,2,349,GALAXY,17.863731,9.966435E-3,17.042669,7.117454E-3,18.050213,0.022742,17.240175,0.015718,1998.14331,1246.06482,7.516026,22.136911,2.945294,4.6,28.08873982,53.9,20.195694,26.539934,31.84985,11.540267,16.290686,17.235348,140.890167,140.044098,133.570175
nyu14258,588015508211302627,35.87881191,-0.80013121,3325,41,2,347,GALAXY,17.508284,5.88703E-3,16.68461,4.488164E-3,17.477512,9.365197E-3,16.671328,7.015311E-3,468.04303,1284.25757,4.126406,13.509993,3.274034,4.6,28.08873996,53.9,18.406891,20.954208,23.532969,14.444283,17.276253,18.452282,135.819366,144.009506,142.831345
nyu14164,588015508210516022,33.99365993,-0.7136335,3325,41,2,335,GALAXY,14.859785,2.425914E-3,14.04134,2.062958E-3,14.982211,0.046112,14.165685,0.033539,1254.6228,479.878662,15.226114,45.82972,3.009942,4.6,28.08874068,53.9,60.667908,69.728371,78.04805,41.958309,54.52533,59.200974,111.92524,113.782204,106.962059
nyu14134,588015508210122861,33.08202492,-0.81151674,3325,41,2,329,GALAXY,14.866264,2.456674E-3,13.960197,2.053963E-3,14.832801,8.2145E-3,14.018742,6.576785E-3,364.728638,358.342499,18.174665,52.236378,2.874131,4.6,28.08874108,53.9,73.307251,84.572411,87.007553,43.834759,52.102615,66.73101,121.114777,126.792542,131.878265
nyu14012,588015508209271005,31.23565983,-0.73283667,3325,41,2,316,GALAXY,17.43572,6.578682E-3,16.555992,4.707049E-3,17.579237,0.012045,16.680914,8.980691E-3,1079.97119,1267.20142,5.909232,17.0156,2.879494,4.6,28.08874182,53.9,20.703972,24.982456,29.776608,12.886984,16.985409,18.251772,28.683811,28.930685,30.000416
nyu14008,588015508209336325,31.2700898,-0.71175671,3325,41,2,317,GALAXY,16.997465,4.694856E-3,16.318394,3.924934E-3,16.965208,7.648146E-3,16.276503,6.667195E-3,1271.59692,219.113373,4.189481,14.382831,3.433082,4.6,28.08874178,53.9,22.682369,25.743483,27.473253,15.384031,19.142839,20.792961,91.186447,99.014351,91.231125
nyu14003,588015508209270944,31.16051676,-0.81044784,3325,41,2,316,GALAXY,16.164942,3.973435E-3,15.247,2.955554E-3,16.308584,0.010017,15.423683,8.391265E-3,374.532318,584.269897,9.623587,28.925968,3.005737,4.6,28.08874182,53.9,39.970592,49.315475,53.874722,21.138323,25.964441,30.697704,85.216736,86.863876,87.158058
nyu140,588015508201865384,14.25138691,-0.82524193,3325,41,2,203,GALAXY,15.927167,3.507274E-3,15.083687,2.741724E-3,16.007505,5.748636E-3,15.150772,4.132834E-3,236.973419,667.957703,10.094974,30.156244,2.987253,4.6,28.08874753,107.8,35.188908,42.526634,45.831066,29.766624,36.464218,40.786892,161.769287,158.009659,1.313155
nyu13881,588015508208418837,29.22848567,-0.64024303,3325,41,2,303,GALAXY,15.182235,2.545727E-3,14.37013,2.189471E-3,15.311034,8.585469E-3,14.508983,8.796892E-3,1921.35596,714.042297,9.303625,30.072908,3.232386,4.6,28.08874255,53.9,50.233707,60.472492,67.291214,36.726379,47.6134,52.494461,63.387623,58.847897,61.747562
nyu13784,588015508207763460,27.66561729,-0.7148728,3325,41,2,293,GALAXY,16.227837,3.57769E-3,15.37781,2.901325E-3,16.256451,0.133409,15.489425,0.093461,1243.5249,117.341278,4.974737,14.348377,2.884249,4.6,28.0887428,53.9,24.543016,29.808788,37.267059,21.196342,24.071938,28.650347,21.591505,174.151459,174.819443
nyu13746,588015508207370284,26.86738675,-0.75088515,3325,41,2,287,GALAXY,15.328099,2.708157E-3,14.469761,2.259006E-3,15.329167,3.871048E-3,14.458677,2.589118E-3,915.994446,1027.25635,12.75358,39.709236,3.113575,4.6,28.08874309,53.9,49.489227,58.49564,60.120686,39.224869,47.214863,50.701809,117.316513,118.450951,118.626068
nyu13728,588015508207304827,26.64497083,-0.70260264,3325,41,2,286,GALAXY,16.788916,4.708587E-3,15.836095,3.434117E-3,16.884888,8.347772E-3,15.954988,6.316989E-3,1354.6991,366.414886,6.151044,19.657499,3.195799,4.6,28.08874319,53.9,23.629438,31.454046,38.483627,22.029459,27.954893,33.222061,10.921929,149.65274,140.009079
nyu13721,588015508207239211,26.55293445,-0.64335796,3325,41,2,285,GALAXY,16.373476,4.241577E-3,15.457191,3.163122E-3,16.44401,0.059817,15.564983,0.102798,1893.01672,890.647034,9.469745,29.797325,3.146582,4.6,28.08874326,53.9,31.501184,43.498611,46.880283,25.897871,32.719032,42.912231,3.704341,5.217132,61.984379
nyu13672,588015508206715012,25.31179491,-0.66362115,3325,41,2,277,GALAXY,18.002625,8.627871E-3,17.088333,5.82061E-3,18.036718,0.014493,17.134775,0.010044,1708.4281,496.283783,4.509852,13.602625,3.016202,4.6,28.0887437,53.9,13.902955,18.225458,19.665113,13.071688,16.386023,17.510998,160.055069,142.267853,151.607101
nyu13591,588015508205863127,23.45963569,-0.63957276,3325,41,2,264,GALAXY,16.655535,4.432839E-3,15.731732,3.328303E-3,16.810732,6.728463E-3,15.892716,5.18325E-3,1926.77246,1351.82898,5.787349,18.134571,3.133485,4.6,28.08874438,53.9,23.754839,30.585752,33.280334,20.556761,27.964846,32.109348,91.384064,76.808533,71.409569
nyu13580,588015508205797556,23.31224097,-0.63696589,3325,41,2,263,GALAXY,15.555371,3.055285E-3,14.680641,2.441989E-3,15.668967,5.154737E-3,14.766768,3.892585E-3,1950.43604,1372.93726,12.296282,38.29866,3.114654,4.6,28.08874442,53.9,49.301666,57.063492,63.856361,33.812485,43.632309,46.831211,21.162533,19.800303,25.744173
nyu13525,588015508205273102,22.00889503,-0.73832146,3325,41,2,255,GALAXY,15.067001,2.536761E-3,14.283195,2.192005E-3,15.171189,3.819608E-3,14.39934,3.207248E-3,1028.51318,413.363159,11.87719,33.181385,2.793707,4.6,28.08874496,107.8,43.999516,51.711506,58.931122,40.085331,50.142189,57.461834,32.097034,53.469131,44.612747
nyu135,588015508201734295,14.01395004,-0.82806734,3325,41,2,201,GALAXY,15.894437,3.214982E-3,15.04095,2.644612E-3,15.982897,0.016372,15.155716,0.014117,211.401978,1231.52014,6.638104,19.627054,2.956726,4.6,28.08874755,107.8,40.940807,45.863419,47.884338,16.599972,19.325378,22.694071,138.626495,138.361298,139.780014
nyu13475,588015508204748833,20.80154633,-0.64119233,3325,41,2,247,GALAXY,14.678167,2.288742E-3,13.794525,1.99065E-3,14.805032,0.034949,13.928406,0.033802,1910.7207,325.877411,10.524287,35.168354,3.341638,4.6,28.08874554,107.8,74.366821,86.801743,91.600914,33.604626,43.703732,50.595238,48.480438,48.919491,49.493763
nyu13467,588015508204552280,20.43285411,-0.73928676,3325,41,2,244,GALAXY,17.732931,6.91135E-3,16.835901,5.160928E-3,17.765738,0.020043,16.880968,0.016017,1019.03442,1057.52173,3.985027,12.252777,3.074704,4.6,28.08874572,107.8,22.330376,24.035984,25.984182,7.735837,8.876232,9.838011,166.197388,158.298538,157.484177
nyu13434,588015508204290053,19.72696158,-0.68321008,3325,41,2,240,GALAXY,15.910213,3.164899E-3,15.012159,2.654294E-3,16.003815,0.054958,15.111922,0.051937,1528.69849,84.599304,5.105058,16.839371,3.298566,4.6,28.08874589,107.8,41.176136,44.542225,47.113232,14.220948,17.991623,23.137178,47.75489,46.83168,42.760262
nyu13433,588015508204224666,19.72083593,-0.65983097,3325,41,2,239,GALAXY,16.071529,3.627527E-3,15.187902,2.840083E-3,16.165115,5.477409E-3,15.283527,3.798634E-3,1741.10034,1389.83521,9.195349,27.181761,2.956034,4.6,28.08874597,107.8,30.76745,38.451321,42.514324,28.910454,35.286549,38.564552,160.725571,159.722641,166.857437
nyu13423,588015508204159085,19.4262319,-0.74662049,3325,41,2,238,GALAXY,17.553146,6.706372E-3,16.618973,4.751314E-3,17.586199,0.012654,16.664253,7.859726E-3,952.160461,72.997124,5.213511,16.097733,3.087695,4.6,28.08874603,107.8,21.50419,26.144732,26.323397,12.707686,15.192681,16.707975,107.797577,104.940247,107.612419
nyu13372,588015508203700290,18.45614892,-0.72678199,3325,41,2,231,GALAXY,17.240255,5.340357E-3,16.295305,3.917569E-3,17.304932,0.017379,16.366722,0.015982,1132.55408,782.17218,4.199677,12.524963,2.982363,4.6,28.0887464,107.8,18.650839,25.860565,31.232235,15.215876,20.234627,24.010221,69.384697,70.1437,72.062294
nyu13318,588015508203307190,17.55956145,-0.7180359,3325,41,2,225,GALAXY,16.956383,5.430655E-3,16.011913,3.886288E-3,17.035355,0.013172,16.086836,9.942739E-3,1211.91541,798.273376,7.490479,24.323326,3.247232,4.6,28.08874669,107.8,24.69352,33.880024,37.646797,18.863823,25.176762,29.204115,163.449036,168.353683,163.514236
nyu13305,588015508203241652,17.41563262,-0.63433943,3325,41,2,224,GALAXY,16.978821,4.552509E-3,16.134327,3.62249E-3,17.057341,0.011851,16.203821,0.010733,1972.50354,850.886536,3.555931,10.234344,2.878105,4.6,28.08874671,107.8,20.262962,21.351864,23.715412,11.534526,15.134517,19.438787,56.758827,62.494423,49.282021
nyu13283,588015508203176059,17.21223332,-0.65098545,3325,41,2,223,GALAXY,17.123747,5.50874E-3,16.241423,4.09884E-3,17.248299,8.906635E-3,16.363062,6.138577E-3,1821.18958,363.152557,5.563453,15.635612,2.810415,4.6,28.08874678,107.8,18.854418,22.90205,25.860718,16.126783,19.478943,20.049686,149.536621,166.522125,152.114822
nyu13282,588015508203176058,17.21866831,-0.65538935,3325,41,2,223,GALAXY,16.097473,3.595533E-3,15.094652,2.721096E-3,16.042471,0.010965,15.107302,9.3646E-3,1781.17639,421.652618,9.531963,32.681129,3.428583,4.6,28.08874678,107.8,45.55315,55.545158,61.305096,27.691771,35.358627,40.880707,172.366898,173.051773,166.345108
nyu13256,588015508202979482,16.82865229,-0.78089515,3325,41,2,220,GALAXY,16.348255,3.791059E-3,15.404587,2.919277E-3,16.40498,0.018782,15.477738,0.018002,640.228821,959.675903,5.933553,20.407436,3.439328,4.6,28.08874696,107.8,34.954556,42.518616,46.572948,21.339884,26.635775,30.954723,33.157928,33.577629,34.577126
nyu13234,588015508202848443,16.55016114,-0.7849457,3325,41,2,218,GALAXY,17.260544,6.193073E-3,16.380806,4.514245E-3,17.246412,0.011927,16.423241,8.510329E-3,603.225098,1149.97205,6.858397,19.422405,2.831916,4.6,28.08874703,107.8,21.805941,25.083593,26.216146,19.876944,22.335896,25.54973,169.758179,179.486237,89.163803
nyu13218,588015508202848375,16.4433917,-0.75949176,3325,41,2,218,GALAXY,19.164925,0.01497,17.869562,7.83777E-3,18.523687,0.310858,17.248295,0.206349,834.618347,179.315567,7.987969,29.939325,3.748052,4.6,28.08874703,107.8,9.860334,110.36496,113.334106,7.110525,12.647427,19.785725,130.675781,153.36615,160.909821
nyu13217,588015508202848374,16.44583855,-0.76366739,3325,41,2,218,GALAXY,17.860662,7.812532E-3,16.904413,5.319406E-3,17.97916,0.028687,16.995085,0.024237,796.685486,201.562744,4.115883,12.149322,2.951814,4.6,28.08874703,107.8,14.681454,20.206533,16.2108,12.207335,15.782193,13.089772,130.728516,124.753693,130.356888
nyu13215,588015508202848372,16.44057964,-0.75566622,3325,41,2,218,GALAXY,16.073244,3.828582E-3,15.146778,2.906413E-3,15.975286,0.024287,15.091743,0.019809,869.389465,153.744507,13.900616,44.998432,3.237154,4.6,28.08874703,107.8,48.055862,61.869804,66.090752,33.070145,41.656773,43.820694,39.4753,41.454117,45.740154
nyu13213,588015508202782862,16.39179473,-0.75149703,3325,41,2,217,GALAXY,16.284349,3.749889E-3,15.374748,2.912287E-3,16.366812,0.010767,15.477487,9.607127E-3,907.285645,1071.24731,6.251982,20.309683,3.248519,4.6,28.08874705,107.8,29.153091,35.008209,41.371223,25.190865,30.877323,35.562515,3.240778,168.991562,14.515386
nyu13210,588015508202848271,16.43310513,-0.80851056,3325,41,2,218,GALAXY,17.164959,6.608775E-3,16.342709,4.848102E-3,17.207685,1.357918,16.346863,1.105586,389.144623,85.899673,7.177008,21.619543,3.012334,4.6,28.08874703,107.8,21.383478,26.131094,32.07679,18.349726,24.954042,29.829538,151.802795,6.855639,92.357025
nyu13186,588015508202717203,16.17012646,-0.8027456,3325,41,2,216,GALAXY,13.808796,1.859327E-3,12.97385,1.687445E-3,13.813006,2.479899E-3,12.95212,1.150129E-3,441.357727,417.306244,22.348017,69.245438,3.098505,4.6,28.08874712,107.8,99.126839,120.082397,124.957443,70.798126,77.834763,80.386345,28.863277,34.055466,34.679199
nyu13184,588015508202651704,16.07069069,-0.76490777,3325,41,2,215,GALAXY,14.05799,2.072908E-3,13.29443,1.818803E-3,14.268102,3.459155E-3,13.433798,2.634734E-3,785.125427,874.254517,20.470224,63.200413,3.087431,4.6,28.08874718,107.8,83.191559,106.166161,115.606941,59.466255,70.106949,76.355667,137.617096,136.595963,140.071121
nyu13150,588015508202520687,15.81546102,-0.73879919,3325,41,2,213,GALAXY,17.80327,8.291451E-3,16.938284,5.979895E-3,17.889893,0.048857,17.071791,0.066733,1022.2951,1276.07373,5.268049,15.579136,2.957287,4.6,28.08874726,107.8,17.840565,19.553698,23.464182,12.893442,17.934267,19.436832,42.424194,74.36676,82.852661
nyu13100,588015508202193023,15.02314642,-0.79801096,3325,41,2,208,GALAXY,16.224119,4.282473E-3,15.311198,3.169109E-3,16.355013,8.346555E-3,15.458958,6.236847E-3,484.257019,878.571411,10.794673,34.364483,3.183467,4.6,28.08874741,107.8,32.29977,41.157661,47.427296,27.958162,39.796307,45.858589,39.220833,17.829985,77.09671
nyu13095,588015508202192999,14.97085622,-0.79307498,3325,41,2,208,GALAXY,16.22154,3.714622E-3,15.35663,2.947416E-3,16.381004,0.019535,15.525915,0.017817,529.122253,403.273071,5.919563,17.891159,3.022378,4.6,28.08874741,107.8,34.408451,41.173443,44.033783,17.768248,21.521252,26.803812,28.753937,28.687033,31.818972
nyu13070,588015508202061873,14.69491016,-0.75182423,3325,41,2,206,GALAXY,15.76484,3.210147E-3,14.89105,2.582394E-3,15.908439,0.03479,15.061535,0.024793,904.112732,616.880493,7.783636,24.594826,3.159812,4.6,28.08874745,107.8,41.570755,49.189362,57.667393,26.47702,33.681923,40.181179,175.341003,179.20784,172.209763
nyu13063,588015508201930841,14.47370459,-0.81468327,3325,41,2,204,GALAXY,15.694902,3.000024E-3,14.827669,2.444752E-3,15.836528,3.836829E-3,14.963384,3.147483E-3,332.803192,1328.04895,6.540273,20.80456,3.180993,4.6,28.08874752,107.8,34.791683,43.32901,49.101089,31.778625,42.190651,48.338158,3.789882,95.863914,64.138603
nyu13047,588015508201930870,14.35343824,-0.74019474,3325,41,2,204,GALAXY,16.216116,3.746596E-3,15.305855,2.878007E-3,16.309608,0.010346,15.410522,9.810217E-3,1009.79358,234.532089,7.173492,22.219439,3.097437,4.6,28.08874752,107.8,32.638435,42.234081,49.209793,23.111755,27.583691,33.54129,95.927231,107.283096,101.744957
nyu13044,588015508201865427,14.32072306,-0.66949109,3325,41,2,203,GALAXY,15.26723,2.856513E-3,14.394116,2.284836E-3,15.41818,4.737401E-3,14.503629,2.848475E-3,1652.43982,1297.95728,14.229012,39.63184,2.785284,4.6,28.08874753,107.8,51.12664,58.249264,60.283718,37.651127,45.264786,50.059265,177.421509,2.774029,177.705811
nyu13043,588015508201865410,14.30768155,-0.64732481,3325,41,2,203,GALAXY,15.843204,3.253091E-3,14.971428,2.58317E-3,16.046526,0.015352,15.152343,0.014226,1853.86047,1179.34985,6.735425,21.532866,3.196957,4.6,28.08874753,107.8,43.060452,50.454254,54.883823,34.114075,45.061054,47.56942,96.592499,103.69796,115.480751
nyu13034,588015508201865389,14.25595562,-0.75594161,3325,41,2,203,GALAXY,16.99308,5.950401E-3,16.182823,4.416898E-3,17.16506,0.011793,16.327177,8.666077E-3,866.720093,709.358521,7.908635,22.219513,2.809525,4.6,28.08874753,107.8,27.38868,33.9067,37.923695,15.28813,19.079109,20.86492,73.048409,65.639938,74.852173
nyu13031,588015508201799826,14.11429405,-0.79241833,3325,41,2,202,GALAXY,16.705236,4.68983E-3,15.85041,3.543765E-3,16.803087,8.247792E-3,15.974355,6.45808E-3,535.277771,782.60675,6.514466,19.462734,2.987618,4.6,28.08874757,107.8,27.02906,33.625145,36.389473,18.691177,21.057497,23.886595,98.939171,108.954742,108.349678
nyu13011,588015508201668795,13.85763381,-0.74215575,3325,41,2,200,GALAXY,16.715179,4.969145E-3,15.858901,3.736781E-3,16.935268,0.011873,16.069567,0.011202,992.085571,1171.45288,6.901128,19.240864,2.788075,4.6,28.08874766,107.8,31.805418,44.701057,49.957977,13.985911,16.239176,17.716764,94.842674,95.168884,96.070503
nyu12930,588015508201078872,12.44469267,-0.73040088,3325,41,2,191,GALAXY,17.952736,8.348994E-3,17.131081,6.180092E-3,18.036196,0.01478,17.239225,0.011342,1098.6134,575.986267,4.486963,12.606173,2.809511,4.6,28.08874795,107.8,14.815467,18.625668,22.564163,11.872343,14.502788,19.606533,131.013855,154.057877,157.24794
nyu12893,588015508200751249,11.71652679,-0.74917001,3325,41,2,186,GALAXY,17.16283,5.371865E-3,16.317171,4.04179E-3,17.221445,8.417794E-3,16.400789,6.520742E-3,927.636963,761.888733,4.679029,13.449779,2.87448,4.6,28.08874831,107.8,17.411419,22.772778,27.224993,16.5882,19.451406,23.016777,173.987366,177.000031,170.035553
nyu12796,588015508200030299,10.00793489,-0.67959064,3325,41,2,175,GALAXY,16.544209,4.277003E-3,15.62628,3.178034E-3,16.671925,6.328698E-3,15.741962,4.359579E-3,1559.88586,201.182617,5.737571,17.826529,3.106982,4.6,28.08874859,107.8,25.024164,29.801661,36.314152,19.743231,24.808577,28.632217,40.892353,42.653236,26.031513
nyu12782,588015508199899287,9.80207191,-0.75265146,3325,41,2,173,GALAXY,15.860048,3.269697E-3,15.033471,2.623574E-3,15.985757,0.011626,15.151098,0.0102,895.803406,1051.84204,7.098748,23.160908,3.262675,4.6,28.08874865,107.8,41.673573,50.280773,54.632881,27.440006,34.934422,40.39703,19.606966,20.216326,21.65312
nyu12742,588015508199637006,9.12186247,-0.72853277,3325,41,2,169,GALAXY,15.887055,3.156289E-3,15.059823,2.615771E-3,15.945753,5.896342E-3,15.123305,6.358373E-3,1115.42883,312.245087,6.343868,20.30463,3.20067,4.6,28.08874864,107.8,34.577366,39.828335,44.830132,20.459742,25.075096,29.341988,59.733028,63.786831,65.64357
nyu12718,588015508199440493,8.64844754,-0.73260693,3325,41,2,166,GALAXY,16.708767,4.638772E-3,15.866376,3.474291E-3,16.810862,7.269997E-3,15.961928,5.335059E-3,1078.35339,91.638527,5.989032,18.026876,3.009981,4.6,28.0887486,107.8,23.771946,28.47476,36.861187,19.861713,25.394897,28.643393,178.039185,151.877075,145.139847
nyu12669,588015508199112844,7.94687274,-0.73318094,3325,41,2,161,GALAXY,17.691154,7.708887E-3,16.796738,6.419093E-3,17.669685,0.031095,16.774536,0.024809,1072.85706,519.234375,6.864934,18.394955,2.679553,4.6,28.08874881,107.8,32.714344,39.486988,42.988537,8.202383,10.708873,10.568857,139.396317,139.536392,140.206421
nyu12649,588015508198981751,7.62825793,-0.78051629,3325,41,2,159,GALAXY,16.683149,4.859869E-3,15.740847,3.552074E-3,16.754574,0.043565,15.86563,0.036339,642.519226,344.904907,8.424994,27.041309,3.209653,4.6,28.08874889,107.8,49.927299,59.135914,63.524612,13.91516,16.510742,19.568264,160.426971,159.728409,160.007401
nyu12606,588015508198522995,6.63991236,-0.69677033,3325,41,2,152,GALAXY,16.661825,4.787441E-3,15.797677,3.597612E-3,16.818661,9.696972E-3,15.985508,7.348435E-3,1403.53284,886.682556,6.785804,19.820541,2.920883,4.6,28.08874906,107.8,27.28404,32.072727,36.14246,20.267948,24.989017,29.238976,105.346786,104.706482,104.986168
nyu12565,588015508198260810,5.97582805,-0.72485771,3325,41,2,148,GALAXY,15.811137,3.289046E-3,14.903192,2.572022E-3,15.943126,4.84752E-3,15.018596,3.621279E-3,1148.32642,293.662994,8.91836,28.277803,3.17074,4.6,28.08874916,107.8,33.442749,44.819931,51.889008,31.312008,42.169777,47.427971,124.853577,166.230377,160.072723
nyu12564,588015508198195369,5.92956573,-0.8151403,3325,41,2,147,GALAXY,16.683363,4.982057E-3,15.768952,3.623216E-3,16.882221,8.111269E-3,15.972738,5.591216E-3,327.851196,1234.28235,7.109983,19.697359,2.770381,4.6,28.08874922,107.8,24.730982,30.429186,34.825562,18.804228,22.674519,24.966658,113.33149,120.960457,110.302788
nyu12562,588015508198195339,5.9136536,-0.79242243,3325,41,2,147,GALAXY,17.352821,6.296642E-3,16.376841,4.344008E-3,17.422747,0.010799,16.48155,7.077047E-3,534.260803,1089.59497,5.286655,15.537986,2.939096,4.6,28.08874922,107.8,19.137556,21.945496,29.650841,16.024555,19.835234,23.34967,177.310867,154.945511,16.546471
nyu12560,588015508198195337,5.90831052,-0.7841803,3325,41,2,147,GALAXY,16.196442,3.897073E-3,15.295528,2.952618E-3,16.353661,5.763021E-3,15.460482,4.159132E-3,609.158264,1041.00879,7.741495,22.906036,2.958865,4.6,28.08874922,107.8,30.698479,40.461216,50.042652,24.592289,31.233826,36.752304,148.125504,139.745087,137.574493
nyu12553,588015508198195325,5.87986387,-0.80279155,3325,41,2,147,GALAXY,17.099781,5.184967E-3,16.250565,3.958262E-3,17.232252,0.017613,16.386887,0.016796,440.023987,782.457886,4.334684,12.451524,2.872533,4.6,28.08874922,107.8,25.718487,31.614164,39.909523,11.248351,14.220605,15.465496,96.833969,97.671181,97.212189
nyu12458,588015508197605590,4.53650367,-0.78375677,3325,41,2,138,GALAXY,16.477413,4.58696E-3,15.581184,3.432862E-3,16.630209,0.01147,15.762959,5.317876E-3,613.576477,819.028809,8.125689,22.412203,2.758191,4.6,28.08874931,107.8,34.427963,36.16626,37.972183,14.662198,18.390745,22.451056,23.34185,22.511585,22.585245
nyu12353,588015508196425896,1.87746984,-0.80436877,3325,41,2,120,GALAXY,15.746447,3.485054E-3,14.761825,2.614025E-3,15.837229,0.015385,14.885453,0.014532,426.164642,1144.69958,12.611189,40.196732,3.187386,4.6,28.08874971,107.8,42.407394,58.492397,67.389717,34.20105,42.358932,49.061077,42.372433,55.939663,50.483269
nyu12326,588015508196360317,1.62026229,-0.78414383,3325,41,2,119,GALAXY,15.979708,3.456784E-3,15.000584,2.701991E-3,16.179064,0.029622,15.235203,0.024683,609.715393,167.436295,6.096441,17.493458,2.869454,4.6,28.08874975,107.8,58.788277,68.939438,73.249573,13.902342,16.401903,19.783155,146.293991,148.43428,145.427872
nyu12298,588015508196163672,1.17650198,-0.64411217,3325,41,2,116,GALAXY,17.286419,6.809869E-3,16.399035,5.822759E-3,17.358496,0.017256,16.47114,0.01582,1882.58533,215.826187,4.001747,12.192338,3.046754,4.6,28.08874976,107.8,18.503275,22.138039,27.937664,14.922808,19.727842,21.068197,73.15242,73.715004,56.835613
nyu12214,588015508195311713,359.31155148,-0.64350173,3325,41,2,103,GALAXY,16.622406,4.698276E-3,15.694134,3.50486E-3,16.786631,0.020483,15.927999,0.017946,1888.14856,955.292236,6.508316,18.734518,2.878551,4.6,28.08874994,107.8,40.571747,49.122189,47.794144,14.482746,16.709608,17.148373,43.897396,45.004524,43.079475
nyu12204,588015508195311772,359.22474905,-0.78390854,3325,41,2,103,GALAXY,16.586548,4.403646E-3,15.630807,3.248873E-3,16.619204,9.467936E-3,15.683843,8.101259E-3,611.993591,166.524719,6.827981,23.016819,3.370955,4.6,28.08874994,107.8,27.446888,36.289169,43.006893,25.104729,33.611717,36.878204,154.884949,173.887131,9.595162
nyu12166,588015508194918497,358.37917345,-0.74015189,3325,41,2,97,GALAXY,15.430335,2.801914E-3,14.532694,2.353745E-3,15.513815,0.040199,14.647929,0.03796,1009.87109,645.558594,7.297134,23.498253,3.220203,4.6,28.08874994,107.8,44.686993,52.857948,56.172569,27.694796,36.375725,40.59721,55.664284,60.55455,58.900719
nyu12129,588015508194590795,357.57862257,-0.8146953,3325,41,2,92,GALAXY,17.111147,6.644199E-3,16.22164,5.161926E-3,17.213774,0.01279,16.311941,0.011071,332.529022,172.886642,6.29696,20.288069,3.221883,4.6,28.08874992,107.8,24.43331,34.988861,38.851936,16.720657,20.56682,22.568792,157.356598,152.040924,155.713287
nyu12128,588015508194590792,357.5731717,-0.73488219,3325,41,2,92,GALAXY,17.783976,7.563432E-3,16.886723,5.437698E-3,17.720116,0.017489,16.867702,0.014542,1057.86707,123.182442,5.318708,17.502325,3.290709,4.6,28.08874992,107.8,19.811958,26.792076,33.174366,13.759813,16.967991,20.95509,178.911377,1.283098,0.736291
nyu12028,588015508193607802,355.35802746,-0.66222561,3325,41,2,77,GALAXY,15.999037,3.426171E-3,15.119139,2.792481E-3,16.096581,0.024425,15.236695,0.022226,1718.13892,400.72345,6.578327,19.614946,2.981753,4.6,28.08874994,107.8,41.928047,47.377972,52.707172,15.136272,19.203762,22.948519,164.995789,160.605103,157.453918
nyu12013,588015508193345721,354.82605308,-0.64315546,3325,41,2,73,GALAXY,17.159056,6.888956E-3,16.183502,4.303094E-3,17.301758,0.058124,16.349047,0.050973,1891.62463,1008.8429,5.691631,17.666109,3.103874,4.6,28.08874995,107.8,29.453901,29.624289,36.149632,9.726396,15.611416,16.738533,171.494675,164.810852,162.324615
nyu12012,588015508193411187,354.87662005,-0.73995012,3325,41,2,74,GALAXY,17.297232,5.834316E-3,16.383022,4.232512E-3,17.400826,0.016946,16.486483,0.013857,1011.93701,107.705368,4.550495,13.655757,3.000939,4.6,28.08874992,107.8,23.954506,29.622623,32.519276,11.11553,13.9251,16.544142,165.495499,170.875931,173.096725
nyu11926,588015508192755861,353.44082885,-0.66357206,3325,41,2,64,GALAXY,17.650703,7.610844E-3,16.711514,5.162989E-3,17.611513,0.057377,16.704859,0.028905,1706.08484,664.773254,5.713097,18.658459,3.265909,4.6,28.08875,107.8,22.467247,26.69952,30.935699,14.548955,18.049732,19.245131,117.132851,126.994827,128.811462
nyu11900,588015508192559190,353.01225619,-0.80790209,3325,41,2,61,GALAXY,17.38624,5.961128E-3,16.509499,4.405619E-3,17.506138,9.919524E-3,16.632771,7.582756E-3,394.081299,852.056335,4.148335,11.487569,2.7692,4.6,28.08875012,107.8,18.501326,24.357277,26.893936,11.622784,15.994457,18.520584,76.252457,76.349777,73.770279
nyu115156,588015510338666566,349.82925902,0.94585491,3325,41,6,40,GALAXY,15.191953,2.96091E-3,14.298082,2.367817E-3,15.28823,0.040854,14.462847,0.035903,1075.36365,496.992676,16.423943,50.925682,3.100698,4.895,28.08837122,107.8,100.576958,108.518997,108.244011,25.781712,31.764055,36.758385,140.216049,139.009521,140.124313
nyu115151,588015510338601072,349.70957001,0.99703298,3325,41,6,39,GALAXY,16.224667,4.010454E-3,15.35324,3.791737E-3,16.373688,8.375605E-3,15.500264,7.18478E-3,1540.42725,769.918823,5.120415,15.763437,3.078547,4.895,28.08837123,107.8,38.848568,42.974476,52.688995,21.712206,25.283895,27.561735,8.895916,9.333395,11.530125
nyu115129,588015510338338971,349.15863565,0.97519954,3325,41,6,35,GALAXY,17.425625,6.057221E-3,16.540234,4.360842E-3,17.528118,9.870887E-3,16.64859,8.019888E-3,1342.39099,1205.29688,3.893633,10.685994,2.744479,4.895,28.08837115,107.8,21.088345,24.437628,26.979435,10.262586,12.531528,13.908723,164.555328,162.987564,167.974838
nyu115046,588015510337224807,346.52130153,0.95887973,3325,41,6,18,GALAXY,16.146461,3.99906E-3,15.329028,3.685342E-3,16.287855,7.450445E-3,15.419765,6.624191E-3,1193.76306,366.807495,5.800993,19.102266,3.29293,4.895,28.08837119,107.8,29.72716,36.046333,40.82439,25.835541,32.572418,36.18681,131.850937,140.96257,129.806961
nyu114837,588015509801468022,349.09301701,0.48743655,3325,41,5,35,GALAXY,17.197979,5.553336E-3,16.277651,3.961773E-3,17.098366,0.010658,16.205153,7.366995E-3,725.76593,608.8526,5.791592,20.050858,3.462063,4.725,28.11734441,107.8,22.63489,27.215641,30.34013,20.251835,23.833065,25.968582,152.254974,1.715074,122.323349
nyu114832,588015509801402512,348.98511778,0.53677632,3325,41,5,34,GALAXY,17.270752,6.140803E-3,16.380594,4.254299E-3,17.379593,0.020163,16.478611,0.022289,1174.17261,988.819519,4.460131,12.586926,2.822098,4.725,28.11734442,107.8,22.446003,25.988533,27.729973,8.847243,10.679928,11.802772,159.262466,159.897125,162.276245
nyu114763,588015509800550504,347.02504158,0.5738314,3325,41,5,21,GALAXY,18.304041,0.010332,17.362251,6.652509E-3,18.346048,0.077814,17.4104,0.039294,1510.90149,862.696716,4.132006,11.609848,2.809737,4.725,28.11734436,107.8,13.973336,16.18294,18.63925,9.449807,11.817458,13.165382,47.836227,33.008656,28.330948
nyu114716,588015510068330616,345.45430856,0.59203704,3325,41,5,11,GALAXY,16.862194,4.589511E-3,15.941938,3.404331E-3,16.957916,9.380059E-3,16.065531,7.563212E-3,1676.96118,193.040375,4.3141,12.403295,2.87506,4.725,28.11734424,107.8,21.733599,27.606783,33.262478,19.14517,25.716177,29.013006,145.674408,6.995456,160.678528
nyu114552,588015509264531574,348.9224394,0.10154314,3325,41,4,34,GALAXY,16.359377,4.148202E-3,15.419453,3.12555E-3,16.418121,0.017454,15.46595,0.020744,1031.93164,419.524841,9.159668,29.547352,3.22581,4.76,28.09140009,107.8,37.597599,45.903362,48.515896,22.01071,29.847385,32.482933,68.687485,66.881653,70.255165
nyu114299,588015508727922743,349.53498172,-0.39048994,3325,41,3,38,GALAXY,14.242033,2.120495E-3,13.375878,1.850324E-3,14.397676,2.248683E-3,13.499688,2.148584E-3,374.62793,544.232788,17.481297,47.918411,2.741125,4.72,28.11363395,107.8,60.083408,73.585495,80.756874,58.706707,72.072739,77.80304,82.517044,113.472076,126.153137
nyu114277,588015508727529555,348.70778799,-0.2413623,3325,41,3,32,GALAXY,15.482007,2.77037E-3,14.646981,2.389198E-3,15.596532,0.020567,14.775981,0.020078,1730.56189,1190.09058,5.761622,17.7258,3.076529,4.72,28.11363385,107.8,39.164448,46.964951,53.025871,23.163923,30.194769,34.289215,118.964104,122.021889,120.047913
nyu114209,588015508726546583,346.45097036,-0.31489586,3325,41,3,17,GALAXY,16.816561,4.693513E-3,15.894679,3.487896E-3,16.95541,0.017335,16.03834,0.012885,1062.11243,1088.86047,4.886371,15.001307,3.07003,4.72,28.11363374,107.8,29.275448,36.167389,41.757935,15.060011,18.107876,21.585571,141.536255,144.029556,143.490952
nyu114030,588015508191117399,349.65407087,-0.75001793,3325,41,2,39,GALAXY,17.100796,5.603984E-3,16.211437,4.088653E-3,17.226114,9.611659E-3,16.354746,0.011214,920.202942,265.354279,5.078942,14.88768,2.931256,4.6,28.08874997,107.8,19.055803,24.328871,28.788958,17.418125,22.821629,25.652815,97.895721,88.20179,48.63586
nyu113945,588015508189806726,346.69754545,-0.76702748,3325,41,2,19,GALAXY,17.551321,7.835632E-3,16.677807,5.500235E-3,17.650963,0.015565,16.813431,0.011797,766.053589,607.694092,6.005115,17.397898,2.89718,4.6,28.08874963,107.8,18.171986,22.855383,27.313837,15.703399,19.205671,21.751183,174.103195,166.387085,172.379578
nyu113704,588015507653853240,348.80937622,-1.24221027,3325,41,1,33,GALAXY,15.024637,2.561796E-3,14.087338,2.057471E-3,15.055563,4.587192E-3,14.146657,4.844239E-3,262.953491,750.909302,10.562078,37.080006,3.510674,4.71,28.12544221,107.8,52.336128,57.902809,61.474411,40.143158,49.074726,53.554817,14.883177,12.488831,24.712555
nyu113684,588015507653525559,348.10107829,-1.17940587,3325,41,1,28,GALAXY,15.605783,3.311724E-3,14.817132,2.523218E-3,15.692538,0.075759,14.905094,0.073246,834.249817,1116.44348,5.736919,18.425259,3.211699,4.71,28.12544209,107.8,43.327396,47.296421,45.830379,16.536388,20.117126,22.876062,20.206022,24.569771,22.862429
nyu113624,588015507652673666,346.0998604,-1.17240629,3325,41,1,15,GALAXY,17.009274,5.332734E-3,16.147024,3.875603E-3,17.125414,0.014431,16.231819,0.015278,897.882385,616.895691,3.833378,11.663558,3.042632,4.71,28.12544211,107.8,24.708513,26.625626,30.638872,10.504663,14.756228,14.944685,21.356878,17.527454,16.349081
nyu1056,588015508754989154,51.31777255,-0.40904481,3325,41,3,451,GALAXY,15.313591,2.699413E-3,14.340838,2.163094E-3,15.403726,7.831444E-3,14.459806,8.047079E-3,208.881699,85.184868,11.539662,38.423462,3.329687,4.72,28.11361716,53.9,49.446945,59.416985,65.331459,39.591282,51.570351,56.079693,80.145035,81.581696,85.418564
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment